-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·98 lines (93 loc) · 4.59 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
<!doctype html>
<html lang="en">
<head>
<title>My Searchable Photo Gallery</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/media-queries.css">
<link href='https://fonts.googleapis.com/css?family=Merienda:700|Lato:400,300,400italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>
</head>
<body>
<header>
<h1>Gallery</h1>
<form action="index.html" method="get" id="search-form">
<label for="search-box">Search</label>
<input type="text" id="search-box" placeholder="Search">
</form>
</header>
<div id="main-wrap">
<div class="container">
<div class="pic-vid-container clearfix">
<div class="media-container image">
<a href="img/01.jpg">
<img src="img/thumbnails/01.jpg" alt="I love hay bales. Took this snap on a drive through the countryside past some straw fields." title="Hay Bales"/>
</a>
</div>
<div class="media-container image">
<a href="img/02.jpg">
<img src="img/thumbnails/02.jpg" alt="The lake was so calm today. We had a great view of the snow on the mountains from here." title="Lake"/>
</a>
</div>
<div class="media-container image">
<a href="img/03.jpg">
<img src="img/thumbnails/03.jpg" alt="I hiked to the top of the mountain and got this picture of the canyon and trees below." title="Canyon"/>
</a>
</div>
<div class="media-container image">
<a href="img/04.jpg">
<img src="img/thumbnails/04.jpg" alt="It was amazing to see an iceberg up close, it was so cold but didn’t snow today." title="Iceberg"/>
</a>
</div>
<div class="media-container image">
<a href="img/05.jpg">
<img src="img/thumbnails/05.jpg" alt="The red cliffs were beautiful. It was really hot in the desert but we did a lot of walking through the canyons." title="Desert"/>
</a>
</div>
<div class="media-container image">
<a href="img/06.jpg">
<img src="img/thumbnails/06.jpg" alt="Fall is coming, I love when the leaves on the trees start to change color." title="Fall"/>
</a>
</div>
<div class="media-container image">
<a href="img/07.jpg">
<img src="img/thumbnails/07.jpg" alt="I drove past this plantation yesterday, everything is so green!" title="Plantation"/>
</a>
</div>
<div class="media-container image">
<a href="img/08.jpg">
<img src="img/thumbnails/08.jpg" alt="My summer vacation to the Oregon Coast. I love the sandy dunes!" title="Dunes"/>
</a>
</div>
<div class="media-container image">
<a href="img/09.jpg">
<img src="img/thumbnails/09.jpg" alt="We enjoyed a quiet stroll down this countryside lane." title="Countryside Lane"/>
</a>
</div>
<div class="media-container image">
<a href="img/10.jpg">
<img src="img/thumbnails/10.jpg" alt="Sunset at the coast! The sky turned a lovely shade of orange." title="Sunset"/>
</a>
</div>
<div class="media-container image">
<a href="img/11.jpg">
<img src="img/thumbnails/11.jpg" alt="I did a tour of a cave today and the view of the landscape below was breathtaking." title="Cave"/>
</a>
</div>
<div class="media-container image">
<a href="img/12.jpg">
<img src="img/thumbnails/12.jpg" alt="I walked through this meadow of bluebells and got a good view of the snow on the mountain before the fog came in." title="Bluebells"/>
</a>
</div>
<div class="media-container video">
<a href="https://www.youtube.com/watch?v=uk6I7YCjXjk">
<img src="img/thumbnails/vid-1.jpg" alt="The first amv video I made. the game is Final Fantasy X/X2. The Music is Enough by Natalise">
</a>
</div>
</div>
</div>
</div>
<script src="http://code.jquery.com/jquery-1.12.3.min.js" integrity="sha256-aaODHAgvwQW1bFOGXMeX+pC4PZIPsvn2h1sArYOhgXQ=" crossorigin="anonymous"></script>
<script src="js/scripts.js"></script>
</body>
</html>