blob: a351793df06250d767a9a21724552afe9d6b4221 (
plain) (
blame)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Pacific Trails Resort :: Activities</title>
<meta charset="utf-8">
<link rel="stylesheet" href=pacific.css>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body class=content>
<div id=wrapper>
<header>
<h1><a href=index.html>Pacific Trails Resort</a></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</a></li>
</ul>
</nav>
<div id=trailhero></div>
<main>
<h2>Activities at Pacific Trails</h2>
<section>
<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>
</section>
<section>
<h3>Kayaking</h3>
<p>Ocean kayaks are available for guest use.</p>
</section>
<section>
<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>
</section>
</main>
<footer>
Copyright © 2022 Pacific Trails Resort
<br />
<!--"Place your name in an email link". I'm assuming that this is what was meant by this.-->
<a href=mailto:msglm@techchud.xyz>msglm</a>
</footer>
</div>
</body>
</html>
|