-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
328 lines (313 loc) · 10.6 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>An Interactive Photo Gallery</title>
<link
href="https://fonts.googleapis.com/css2?family=Righteous&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/normalize.min.css" />
<link rel="stylesheet" href="js/lightbox/lightbox.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="container__hero">
<header class="header">
<h1 class="header__title">An Interactive Photo Gallery</h1>
<input
type="text"
id="myInput"
onkeyup="myFunction()"
placeholder="Search..."
title="Type in a name"
class="header__input"
/>
</header>
<main id="photos" class="main">
<div class="main__photos">
<a
class="main__lightbox"
href="photos/01.jpg"
data-lightbox="roadtrip"
data-title="I love hay bales. Took this snap on a drive through the countryside past some straw fields."
>
<img
src="photos/thumbnails/01.jpg"
alt="Hay Bales"
class="main__thumbnail"
/>
<div class="main__description search">
<h3 class="main__title">Hay Bales</h3>
<p class="main__caption">
I love hay bales. Took this snap on a drive through the
countryside past some straw fields.
</p>
</div>
</a>
</div>
<div class="main__photos">
<a
class="main__lightbox"
href="photos/02.jpg"
data-lightbox="roadtrip"
data-title="The lake was so calm today. We had a great view of the snow on the mountains from here."
>
<img
src="photos/thumbnails/02.jpg"
alt="Lake"
class="main__thumbnail"
/>
<div class="main__description search">
<h3 class="main__title">Lake</h3>
<p class="main__caption">
The lake was so calm today. We had a great view of the snow on
the mountains from here.
</p>
</div>
</a>
</div>
<div class="main__photos">
<a
class="main__lightbox"
href="photos/03.jpg"
data-lightbox="roadtrip"
data-title="I hiked to the top of the mountain and got this picture of the canyon and trees below"
>
<img
src="photos/thumbnails/03.jpg"
alt="Canyon"
class="main__thumbnail"
/>
<div class="main__description search">
<h3 class="main__title">Canyon</h3>
<p class="main__caption">
I hiked to the top of the mountain and got this picture of the
canyon and trees below.
</p>
</div>
</a>
</div>
<div class="main__photos">
<a
class="main__lightbox"
href="photos/04.jpg"
data-lightbox="roadtrip"
data-title="It was amazing to see an iceberg up close, it was so cold but didn’t snow today. "
>
<img
src="photos/thumbnails/04.jpg"
alt="Iceberg"
class="main__thumbnail"
/>
<div class="main__description search">
<h3 class="main__title">Iceberg</h3>
<p class="main__caption">
It was amazing to see an iceberg up close, it was so cold but
didn’t snow today.
</p>
</div>
</a>
</div>
<div class="main__photos">
<a
class="main__lightbox"
href="photos/05.jpg"
data-lightbox="roadtrip"
data-title="The red cliffs were beautiful. It was really hot in the desert but we did a lot of walking through the canyons."
>
<img
src="photos/thumbnails/05.jpg"
alt="Desert"
class="main__thumbnail"
/>
<div class="main__description search">
<h3 class="main__title">Desert</h3>
<p class="main__caption">
The red cliffs were beautiful. It was really hot in the desert
but we did a lot of walking through the canyons.
</p>
</div>
</a>
</div>
<div class="main__photos">
<a
class="main__lightbox"
href="photos/06.jpg"
data-lightbox="roadtrip"
data-title="Fall is coming, I love when the leaves on the trees start to change color."
>
<img
src="photos/thumbnails/06.jpg"
alt="Fall"
class="main__thumbnail"
/>
<div class="main__description search">
<h3 class="main__title">Fall</h3>
<p class="main__caption">
Fall is coming, I love when the leaves on the trees start to
change color.
</p>
</div>
</a>
</div>
<div class="main__photos">
<a
class="main__lightbox"
href="photos/07.jpg"
data-lightbox="roadtrip"
data-title="I drove past this plantation yesterday, everything is so green!"
>
<img
src="photos/thumbnails/07.jpg"
alt="Plantation"
class="main__thumbnail"
/>
<div class="main__description search">
<h3 class="main__title">Plantation</h3>
<p class="main__caption">
I drove past this plantation yesterday, everything is so green!
</p>
</div>
</a>
</div>
<div class="main__photos">
<a
class="main__lightbox"
href="photos/08.jpg"
data-lightbox="roadtrip"
data-title="My summer vacation to the Oregon Coast. I love the sandy dunes!"
>
<img
src="photos/thumbnails/08.jpg"
alt="Dunes"
class="main__thumbnail"
/>
<div class="main__description search">
<h3 class="main__title">Dunes</h3>
<p class="main__caption">
My summer vacation to the Oregon Coast. I love the sandy dunes.
</p>
</div>
</a>
</div>
<div class="main__photos">
<a
class="main__lightbox"
href="photos/09.jpg"
data-lightbox="roadtrip"
data-title="We enjoyed a quiet stroll down this countryside lane. "
>
<img
src="photos/thumbnails/09.jpg"
alt="Countryside Lane"
class="main__thumbnail"
/>
<div class="main__description search">
<h3 class="main__title">Countryside Lane</h3>
<p class="main__caption">
We enjoyed a quiet stroll down this countryside lane.
</p>
</div>
</a>
</div>
<div class="main__photos">
<a
class="main__lightbox"
href="photos/10.jpg"
data-lightbox="roadtrip"
data-title="Sunset at the coast! The sky turned a lovely shade of orange."
>
<img
src="photos/thumbnails/10.jpg"
alt="Sunset"
class="main__thumbnail"
/>
<div class="main__description search">
<h3 class="main__title">Sunset</h3>
<p class="main__caption">
Sunset at the coast! The sky turned a lovely shade of orange.
</p>
</div>
</a>
</div>
<div class="main__photos">
<a
class="main__lightbox"
href="photos/11.jpg"
data-lightbox="roadtrip"
data-title="I did a tour of a cave today and the view of the landscape below was breathtaking."
>
<img
src="photos/thumbnails/11.jpg"
alt="Cave"
class="main__thumbnail"
/>
<div class="main__description search">
<h3 class="main__title">Cave</h3>
<p class="main__caption">
I did a tour of a cave today and the view of the landscape below
was breathtaking.
</p>
</div>
</a>
</div>
<div class="main__photos">
<a
class="main__lightbox"
href="photos/12.jpg"
data-lightbox="roadtrip"
data-title="I walked through this meadow of bluebells and got a good view of the snow on the mountain before the fog came in."
>
<img
src="photos/thumbnails/12.jpg"
alt="Bluebells"
class="main__thumbnail"
/>
<div class="main__description search">
<h3 class="main__title">Bluebells</h3>
<p class="main__caption">
I walked through this meadow of bluebells and got a good view of
the snow on the mountain before the fog came in.
</p>
</div>
</a>
</div>
</main>
<!-- end of wrapper -->
<footer class="footer">
<ul class="footer__list">
<li class="footer__list-items">
<a
href="https://twitter.com/nikkohular"
class="footer__social footer__social-twitter"
target="_blank"
>Twitter</a
>
</li>
<li class="footer__list-items">
<a
href="https://www.linkedin.com/in/nikko-rey-hular-121857130/"
class="footer__social footer__social-linkedin"
target="_blank"
>LinkedIn</a
>
</li>
<li class="footer__list-items">
<a
href="https://github.com/Nikkorey"
class="footer__social footer__social-github"
target="_blank"
>Github</a
>
</li>
</ul>
<p class="footer__copyright">Copyright © 2020, Nikko Rey Hular</p>
</footer>
</div>
<script src="js/jquery-1.11.2.min.js"></script>
<script src="js/lightbox/lightbox-plus-jquery.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>