-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (79 loc) · 2.97 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Explore Tiles</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<div class="page-wrap">
<header>
<h1 class="logo">Explore</h1>
<p>wild places to go</p>
</header>
<main>
<ul class="tiles">
<li>
<img src="images/P1000692.JPG">
<div class="tileinfo">
<h3><a href="#">Abandoned Soldier Barrack</a></h3>
<p>Some say that the echoes of yelling officers still resonate. Find out for yourself.</p>
<a href="#" class="btn cta">Read more <span class="caret"></span></a>
</div>
</li>
<li>
<img src="images/P1000754.JPG">
<div class="tileinfo">
<h3><a href="#">Empty Airfield</a></h3>
<p>Plop your tent into the runway spend the night with wolfes and walkers.</p>
<a href="#" class="btn cta">Read more <span class="caret"></span></a>
</div>
</li>
<li>
<img src="images/P1010513.JPG">
<div class="tileinfo">
<h3><a href="#">Crazy Horse</a></h3>
<p>Stay with the crazy horse and keep wondering why it's rolling its eyes at you all the time.</p>
<a href="#" class="btn cta">Read more <span class="caret"></span></a>
</div>
</li>
<li>
<img src="images/P1060003.JPG">
<div class="tileinfo">
<h3><a href="#">Lamp Post</a></h3>
<p>Like a seagull in the shopping mall. The balance can be tricky at times.</p>
<a href="#" class="btn cta">Read more <span class="caret"></span></a>
</div>
</li>
<li>
<img src="images/P1050639.JPG">
<div class="tileinfo">
<h3><a href="#">Parades in Connecticut</a></h3>
<p>Even our most experienced travel agents are reduced to silence.</p>
<a href="#" class="btn cta">Read more <span class="caret"></span></a>
</div>
</li>
<li>
<img src="images/P1030239.JPG">
<div class="tileinfo">
<h3><a href="#">Wonder Park</a></h3>
<p>A winter wonderland of frozen, ionized funguses.</p>
<a href="#" class="btn cta">Read more <span class="caret"></span></a>
</div>
</li>
</ul>
</main>
<footer>
<div class="info">
<p><span class="logo">Explore</span> by <a href="//supergnu.com">Supergnu</a>. <span class="tagline">Just a custom grid & tiles sample.</span></p>
</div>
<div class="social">
<a href="#"><span class="tw icon-twitter-square"><span class="screenreader">Twitter</span></span></a>
<a href="#"><span class="fb icon-facebook-square"><span class="screenreader">Facebook</span></span></a>
</div>
</footer>
</div>
</body>
</html>