-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·151 lines (125 loc) · 4.92 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html class="js" lang="en">
<head>
<meta charset="utf-8">
<title>Dorothy DeLong</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<meta name="theme-color" content="#fafafa">
</head>
<body>
<!--[if IE]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<!-- Add your site or application content here -->
<header>
<div class="content-wrapper">
<div id="title">
<a href="index.html">
<h1>Dorothy DeLong <img src="img/logo.png" alt="logo"></h1>
</a>
</div>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li id="portfolio-nav"><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section id="about">
<div class="content-wrapper">
<h2>"I capture the realness behind feminism, no filter."</h2>
<article>
<figure>
<img src="img/headshot.png" alt="Dorothy DeLong headshot">
</figure>
<p>"My work focuses on candid photographs taken on
location at events for women’s rights, places where
women are owning their space, and fleeting encounters
on the streets. My work engulfs the viewer in real
moments of strength, vulnerability, and solidarity."</p>
</article>
</div>
</section>
<section id="portfolio">
<div class="content-wrapper">
<div class="portfolio-items">
<article class="photo">
<img src="img/father.png" alt="Daughter sitting on father's shoulders">
<p class="caption">Father, Denver Colorado - June 25, 2018</p>
</article>
<article class="photo">
<img src="img/haircut.png" alt="Black and white photo of a haircut in progress">
<p class="caption">Haircut, New York City - March 31, 2018</p>
</article>
<article class="photo">
<img src="img/flag.png" alt="Person with blue hair wearing pansexual flag">
<p class="caption">Flag, LGBTQIA March in Washington DC - November 12, 2017</p>
</article>
<article class="photo">
<img src="img/moment.png" alt="Singer on stage">
<p class="caption">Moment, FemRock Fest, Austin Texas - July 17, 2018</p>
</article>
<article class="photo">
<img src="img/smile.png" alt="Girl smiling">
<p class="caption">Smile, San Francisco California - August 4, 2017</p>
</article>
<article class="photo">
<img src="img/metoo.png" alt="Street art spelling out #metoo">
<p class="caption">Street Art, Montreal, Canada - September 1, 2018</p>
</article>
</div>
</div>
</section>
</main>
<footer id="contact">
<div class="content-wrapper">
<h3>Like what you see?<br>
Let's talk!</h3>
<h3><a href="mailto:[email protected]"></a>[email protected]</a><br>
(555) 555-5555</h3>
<div class="social-icons">
<p>
<a href="https://www.facebook.com/Skillcrush/" target="_blank">
<img src="img/facebook.png">
</a>
</p>
<p>
<a href="https://www.twitter.com/Skillcrush/" target="_blank">
<img src="img/twitter.png">
</a>
</p>
<p>
<a href="https://www.instagram.com/Skillcrush/" target="_blank">
<img src="img/instagram.png">
</a>
</p>
<p>
<a href="https://www.flickr.com/Skillcrush/" target="_blank">
<img src="img/flickr.png">
</a>
</p>
</div>
</div>
</footer>
<script src="js/vendor/modernizr-3.8.0.min.js"></script>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-3.4.1.min.js"><\/script>')</script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<!-- Google Analytics: change UA-XXXXX-Y to be your site's ID. -->
<script>
window.ga = function () { ga.q.push(arguments) }; ga.q = []; ga.l = +new Date;
ga('create', 'UA-XXXXX-Y', 'auto'); ga('set','transport','beacon'); ga('send', 'pageview')
</script>
<script src="https://www.google-analytics.com/analytics.js" async></script>
</body>
</html>