-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (85 loc) · 4.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css?family=Merriweather&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Interactive Photo Gallery</title>
<link rel="stylesheet" href="css/normalize.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.10.0/css/lightbox.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<main class="container">
<!-- Search Box -->
<div class="search-box">
<input type="text" id="search" placeholder="Search for an image..."> <img class="search-icon" src="images/search.png" alt="search">
</div>
<!-- Image Gallery-->
<ul>
<li>
<a href="images/photos/01.jpg" data-lightbox="gallery" data-title="I love hay bales. Took this snap on a drive through the countryside past some straw fields." data-alt="Hay Bales">
<img src="images/photos/thumbnails/01.jpg" alt="Hay Bales">
</a>
</li>
<li>
<a href="images/photos/02.jpg" data-lightbox="gallery" data-title="The lake was so calm today. We had a great view of the snow on the mountains from here." data-alt="Lake">
<img src="images/photos/thumbnails/02.jpg" alt="Lake">
</a>
</li>
<li>
<a href="images/photos/03.jpg" data-lightbox="gallery" data-title="I hiked to the top of the mountain and got this picture of the canyon and trees below." data-alt="Canyon">
<img src="images/photos/thumbnails/03.jpg" alt="Canyon">
</a>
</li>
<li>
<a href="images/photos/04.jpg" data-lightbox="gallery" data-title="It was amazing to see an iceberg up close, it was so cold but didn’t snow today." data-alt="Iceberg">
<img src="images/photos/thumbnails/04.jpg" alt="Iceberg">
</a>
</li>
<li>
<a href="images/photos/05.jpg" data-lightbox="gallery" data-title="The red cliffs were beautiful. It was really hot in the desert but we did a lot of walking through the canyons." data-alt="Desert">
<img src="images/photos/thumbnails/05.jpg" alt="Desert">
</a>
</li>
<li>
<a href="images/photos/06.jpg" data-lightbox="gallery" data-title="Fall is coming, I love when the leaves on the trees start to change color." data-alt="Fall">
<img src="images/photos/thumbnails/06.jpg" alt="Fall">
</a>
</li>
<li>
<a href="images/photos/07.jpg" data-lightbox="gallery" data-title="I drove past this plantation yesterday, everything is so green!" data-alt="Plantation">
<img src="images/photos/thumbnails/07.jpg" alt="Plantation">
</a>
</li>
<li>
<a href="images/photos/08.jpg" data-lightbox="gallery" data-title="My summer vacation to the Oregon Coast. I love the sandy dunes!" data-alt="Dunes">
<img src="images/photos/thumbnails/08.jpg" alt="Dunes">
</a>
</li>
<li>
<a href="images/photos/09.jpg" data-lightbox="gallery" data-title="We enjoyed a quiet stroll down this countryside lane." data-alt="Countryside Lane">
<img src="images/photos/thumbnails/09.jpg" alt="Countryside Lane">
</a>
</li>
<li>
<a href="images/photos/10.jpg" data-lightbox="gallery" data-title="Sunset at the coast! The sky turned a lovely shade of orange." data-alt="Sunset">
<img src="images/photos/thumbnails/10.jpg" alt="Sunset">
</a>
</li>
<li>
<a href="images/photos/11.jpg" data-lightbox="gallery" data-title="I did a tour of a cave today and the view of the landscape below was breathtaking." data-alt="Cave">
<img src="images/photos/thumbnails/11.jpg" alt="Cave">
</a>
</li>
<li>
<a href="images/photos/12.jpg" data-lightbox="gallery" 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." data-alt="Bluebells">
<img src="images/photos/thumbnails/12.jpg" alt="Bluebells">
</a>
</li>
</ul>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.10.0/js/lightbox-plus-jquery.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>