diff options
author | msglm <msglm@techchud.xyz> | 2023-01-14 05:31:48 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2023-01-14 05:31:48 -0600 |
commit | 9d53d8857eaa1c9405894a88ca75bc4657e42f35 (patch) | |
tree | eb1efc1d028b949dd83bb710c68be8eff58f26e7 /HTML/Tests/Test3/activities.html | |
download | school-code-master.tar.gz school-code-master.tar.bz2 school-code-master.zip |
Diffstat (limited to 'HTML/Tests/Test3/activities.html')
-rw-r--r-- | HTML/Tests/Test3/activities.html | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/HTML/Tests/Test3/activities.html b/HTML/Tests/Test3/activities.html new file mode 100644 index 0000000..9bd9af5 --- /dev/null +++ b/HTML/Tests/Test3/activities.html @@ -0,0 +1,49 @@ +<!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"> + <meta name="description" content="Pacific Trails Resort is a site that contains information about the activities and registration for the resort."> + + </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.html">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> |