-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (65 loc) · 3.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/baguetteBox.min.css">
<title>Karina's Photo Gallery</title>
</head>
<body>
<form class="search">
<input type="search" name="search" id="search" placeholder="Search">
</form>
<div class="gallery">
<a 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>
<a 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>
<a 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>
<a 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>
<a 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>
<a 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>
<a 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>
<a 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>
<a 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>
<a 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>
<a 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>
<a 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>
<script src="js/baguetteBox.min.js"></script>
<script src="js/searchFilter.js"></script>
<script src="js/app.js"></script>
</body>
</html>