-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (55 loc) · 2.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Pacific Trails Resort</title>
<meta charset="utf-8">
<link href="pacific.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"> </script> <![endif]-->
</head>
<body>
<div id="wrapper">
<header>
<h1>Pacific Trails Resort</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a>
</li>
<li><a href="yurts.html">Yurts</a>
</li>
<li><a href="activities.html">Activities</a>
</li>
<li><a href="reservations.html">Reservations</a>
</ul>
</nav>
<div id="content">
<h2>Enjoy Nature in Luxury</h2>
<img src="coast.jpg" alt="Pacific Coast">
<p><span class="resort">Pacific Trails Resort</span> offers a special lodging experience on the California North Coast. Relax in serenity with panoramic views of the Pacific Ocean.</p>
<ul>
<li>Private yurts with decks overlooking the ocean</li>
<li>Activities lodge with fireplace and gift shop</li>
<li>Nightly fine dining at the Overlook Cafe</li>
<li>Heated outdoor pool and whirlpool</li>
<li>Guided hiking tours of the redwoods</li>
</ul>
<div id="contact">
<span class="resort">Pacific Trails Resort</span>
<br> 12010 Pacific Trails Road
<br> Zephyr, CA 95555
<br>
<br> 888-555-5555
<br>
<br>
</div>
</div>
<footer>
Copyright © 2014 Pacific Trails Resort
<br>
<a href="mailto:[email protected]">[email protected]</a>
</footer>
</div>
</body>
</html>