-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (77 loc) · 4.19 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
<!DOCTYPE html>
<html>
<head>
<title>Photo Gallery</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/baguetteBox.min.css">
</head>
<body>
<div class="interactivegallery">
<input id="searchbar" type="text" onkeyup="getInput()" placeholder="Search">
<div class="gallery">
<div class="photo">
<a id="picture" href="photos/01.jpg" data-caption="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">
</a>
</div>
<div class="photo">
<a id="picture" href="photos/02.jpg" data-caption="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">
</a>
</div>
<div class="photo">
<a id="picture" href="photos/03.jpg" data-caption="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">
</a>
</div>
<div class="photo">
<a id="picture" href="photos/04.jpg" data-caption="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">
</a>
</div>
<div class="photo">
<a id="picture" href="photos/05.jpg" data-caption="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">
</a>
</div>
<div class="photo">
<a id="picture" href="photos/06.jpg" data-caption="Fall is coming, I love when the leaves on the trees start to change color.">
<img src="photos/thumbnails/06.jpg" alt="Fall">
</a>
</div>
<div class="photo">
<a id="picture" href="photos/07.jpg" data-caption="I drove past this plantation yesterday, everything is so green!">
<img src="photos/thumbnails/07.jpg" alt="Plantation">
</a>
</div>
<div class="photo">
<a id="picture" href="photos/08.jpg" data-caption="My summer vacation to the Oregon Coast. I love the sandy dunes!">
<img src="photos/thumbnails/08.jpg" alt="Dunes">
</a>
</div>
<div class="photo">
<a id="picture" href="photos/09.jpg" data-caption="We enjoyed a quiet stroll down this countryside lane.">
<img src="photos/thumbnails/09.jpg" alt="Countryside Lane">
</a>
</div>
<div class="photo">
<a id="picture" href="photos/10.jpg" data-caption="Sunset at the coast! The sky turned a lovely shade of orange.">
<img src="photos/thumbnails/10.jpg" alt="Sunset">
</a>
</div>
<div class="photo">
<a id="picture" href="photos/11.jpg" data-caption="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">
</a>
</div>
<div class="photo">
<a id="picture" href="photos/12.jpg" data-caption="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">
</a>
</div>
</div>
</div>
<script src="js/baguetteBox.min.js" async></script>
<script src="js/app.js"></script>
</body>
</html>