-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (60 loc) · 2.42 KB
/
index.html
File metadata and controls
69 lines (60 loc) · 2.42 KB
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>
<title> Pacific Trails</title>
<meta charset="utf-8">
<link rel="stylesheet" href="pacific.css">
<!--[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></li>
</ul>
</nav>
<div id="content">
<h2>Enjoy Nature in Luxury</h2>
<span class="mobile"><img src="images/coast.jpg" height="250" width="320" alt="coast image"></span>
<span class="desktop"> <video controls="controls" poster="media/pacifictrailsresort.jpg" width="320" height="240">
<source src="media/PacificTrailsResort.mp4" type="video/mp4">
<source src="media/PacificTrailsResort.ogv" type="video/ogg">
<source src="media/pacifictrailsresort.swf" type="video/swf">
</video></span>
<p><span class="resort">Pacific Trails Resort</span> offers a special lodging expirience on the California North Coast. Relax in serenity with panoramic views of the Pacific Ocean.
<br>
</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>
<span class="desktop">888-555-5555</span>
<span class="mobile"><a href="tel:888-555-5555">888-555-5555</a></span>
</div>
</div>
<footer>
Copyright © 2014 Pacific Trails Resort
<br>
<a href="serghei@sandin.com">serghei@sandin.com</a>
</footer>
</div>
</body>
</html>