-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsouthwest.html
69 lines (67 loc) · 2.36 KB
/
southwest.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>
<head>
<meta charset="utf-8">
<title>Parks of the Southwest : Serenity Travel : Specialty National Park Tours</title>
<link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet">
<link href="styles.css" type="text/css" rel="stylesheet">
</head>
<body id="swparks">
<div id="page">
<header>
<img id="logo" src="images/logo.png" alt="Serenity Travel - Specialty National Park Tours">
<nav>
<ul>
<li><a href="parks.html" id="parks"><img src="images/parksIcon.svg" alt="">Parks</a></li>
<li><a href="gallery.html" id="gallery"><img src="images/galleryIcon.svg" alt="">Gallery</a></li>
<li><a href="contact.html" id="contact"><img src="images/contactIcon.svg" alt="">Contact</a></li>
<li><a href="join.html" id="join"><img src="images/joinIcon.svg" alt="">Join</a></li>
</ul>
</nav>
<section id="social">
<ul>
<li><a href="http://www.facebook.com" id="facebook"><img src="images/facebookIcon.svg"></a></li>
<li><a href="http://www.instagram.com" id="instagram"><img src="images/instagramIcon.svg"></a></li>
<li><a href="http://twitter.com" id="twitter"><img src="images/twitterIcon.svg"></a></li>
</ul>
</section>
</header>
<main>
<h1>Parks of the Southwest</h1>
<section>
<article id="mesaverde" class="park">
<img src="images/01Southwest.jpg" alt="Mesa Verde NP" width="400" height="400">
<div class="details">
<h2>Mesa Verde National Park</h2>
<p>Colorado</p>
</div>
</article>
<article id="bandolier" class="park">
<img src="images/02Southwest.jpg" alt="Bandolier NP" width="400" height="400">
<div class="details">
<h2>Bandolier National Park</h2>
<p>New Mexico</p>
</div>
</article>
<article id="arches" class="park">
<img src="images/03Southwest.jpg" alt="Arches NP" width="400" height="400">
<div class="details">
<h2>Arches National Park</h2>
<p>Utah</p>
</div>
</article>
<article id="sanddunes" class="park">
<img src="images/04Southwest.jpg" alt="Sand Dunes NP" width="400" height="400">
<div class="details">
<h2>Great Sand Dunes National Park</h2>
<p>Colorado</p>
</div>
</article>
</section>
</main>
<footer>
<p id="copyright">Site © Serenity Travel. All Rights Reserved.</p>
</footer>
</div>
</body>
</html>