forked from GT-R/ptCaseStudy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivities.html
More file actions
88 lines (65 loc) · 3.22 KB
/
activities.html
File metadata and controls
88 lines (65 loc) · 3.22 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<title>Pacific Trails :: Activities</title>
<link rel="stylesheet" href="pacific.css" />
<meta charset="utf-8" />
<meta name="Activities" content="Pacific Trails Resort has hiking, kayaking, bird watching, and enjoying nature.">
<!--[if lt IE 9]
<script scr="http://html5shim.googlecode.com/snv/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>The Activities at Pacific Trails</h2>
<img class="float" src="images/trail.jpg" alt="Picture of Pacific Trails Coast" width="320" height="250">
<h3>Hiking</h3>
<p>Pacific Trails Resort has 5 miles of hiking trails and is adjacent to a state park. Go it alone or join one of our guided hikes.</p>
<h3>Kayaking</h3>
<p>Ocean kayaks are available for guest use.</p>
<h3>Bird Watching</h3>
<p>While anytime is a good time for bird watching at Pacific Trails, we offer guided birdwatching trips at sunrise several times a week.</p>
<div id="gallery">
<img class="placeholder" src="images/photo5.jpg" alt="Background Coastline" width="200" height="150">
<ul>
<li>
<a href="images/photo2.jpg"><img src="images/photo2thumb.jpg" width="100" height="75" alt="Rocky Coastline"><span><img src="images/photo2.jpg" width="200" height="150" alt="Rocky Coastline"><br>Rocky Coastline</span>
</a>
</li>
<li>
<a href="images/photo3.jpg"><img src="images/photo3thumb.jpg" width="100" height="75" alt="Coastal Mountains"><span><img src="images/photo3.jpg" width="200" height="150" alt="Coastal Mountains"><br>Coastal Mountains</span>
</a>
</li>
<li>
<a href="images/photo4.jpg"><img src="images/photo4thumb.jpg" width="100" height="75" alt="Turquoise Waters"><span><img src="images/photo4.jpg" width="200" height="150" alt="Turquoise Waters"><br>Turquoise Waters</span>
</a>
</li>
<li>
<a href="images/photo6.jpg"><img src="images/photo6thumb.jpg" width="100" height="75" alt="Sunset on the Coast"><span><img src="images/photo6.jpg" width="200" height="150" alt="Sunset on the Coast"><br>Sunset on the Coast</span>
</a>
</li>
</ul>
</div>
</div>
<footer>Copyright © 2015 Pacific Trails Resort
<br><a href="mailto:rgallo@my.hennepintech.edu">rgallo@my.hennepintech.edu</a>
</footer>
</div>
</body>
</html>