1
0
Fork 0

Week 1: HTML5-Based Layout

This commit is contained in:
Llewellyn van der Merwe 2022-01-23 23:53:22 +02:00
parent 9fc02178fd
commit 10058827d5
Signed by: Llewellyn
GPG Key ID: EFC0C720A240551C
2 changed files with 57 additions and 58 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.idea

View File

@ -1,66 +1,64 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta name="description" content="Pacific Trails Resort, a special lodging company on the California North Coast.Rent Yurts, go hiking, or relax in the heated pool"> <meta name="description"
<meta charset="utf-8"> content="Pacific Trails Resort, a special lodging company on the California North Coast.Rent Yurts, go hiking, or relax in the heated pool">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta charset="utf-8">
<title>Pacific Trails Resort</title> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="pacific.css"> <title>Pacific Trails Resort</title>
<link rel="stylesheet" href="pacific.css">
<!--[if lt IE 9]>
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]--> <![endif]-->
<!-- Completed files --> <!-- Completed files -->
</head> </head>
<body> <body>
<div id="wrapper"> <header id="wrapper">
<h1>Pacific Trails Resort</h1> <h1>Pacific Trails Resort</h1>
<nav>
<ul>
<ul> <li><a href="index.html">Home</a></li>
<li><a href="index.html">Home</a></li> <li><a href="yurts.html">Yurts</a></li>
<li><a href="yurts.html">Yurts</a></li> <li><a href="activities.html">Activities</a></li>
<li><a href="activities.html">Activities</a></li> <li><a href="reservations.html">Reservations</a></li>
<li><a href="reservations.html">Reservations</a></li> </ul>
</ul> </nav>
</header>
<div id="homehero"></div> <main id="homehero">
<h2>Enjoy Nature in Luxury</h2>
<h2>Enjoy Nature in Luxury</h2> <video controls="controls"
poster="pacific.jpg"
<video controls= "controls" width="320" height="240">
poster= "pacific.jpg" <source src="pacific.mp4" type="video/mp4">
width= "320" height= "240"> <source src="pacific.ogg" type="video/ogg">
<source src= "pacific.mp4" type= "video/mp4"> <embed type="application/x-shockwave-flash"
<source src= "pacific.ogg" type= "video/ogg"> src="pacific.swf" quality="high"
<embed type= "application/x-shockwave-flash" width="320" height="240">
src= "pacific.swf" quality= "high" </video>
width= "320" height= "240"> <article>
</video> <h3>What We Offer</h3>
<p><span class="resort">Pacific Trails Resort</span> offers a special lodging experience on the California North
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> Relax in serenity with panoramic views of the Pacific Ocean.</p>
<ul>
<ul> <li>Private yurts with decks overlooking the ocean</li>
<li>Private yurts with decks overlooking the ocean</li> <li>Activities lodge with fireplace and gift shop</li>
<li>Activities lodge with fireplace and gift shop</li> <li>Nightly fine dining at the Overlook Cafe</li>
<li>Nightly fine dining at the Overlook Cafe</li> <li>Heated outdoor pool and whirlpool</li>
<li>Heated outdoor pool and whirlpool</li> <li>Guided hiking tours of the redwoods</li>
<li>Guided hiking tours of the redwoods</li> </ul>
</ul> </article>
</main>
<div> <footer>
<span class="resort">Pacific Trails Resort</span><br> <span class="resort">Pacific Trails Resort</span><br>
12010 Pacific Trails Road<br> 12010 Pacific Trails Road<br>
Zephyr, CA 95555<br><br> Zephyr, CA 95555<br><br>
<a id="mobile" href="tel:888-555-5555">888-555-5555</a> <a id="mobile" href="tel:888-555-5555">888-555-5555</a>
<span id="desktop">888-555-5555</span><br><br> <span id="desktop">888-555-5555</span><br><br>
</div> Copyright © 2016 Pacific Trails Resort<br>
<a href="mailto:yourfirstname@yourlastname.com">yourfirstname@yourlastname.com</a>
Copyright © 2016 Pacific Trails Resort<br> </footer>
<a href="mailto:yourfirstname@yourlastname.com">yourfirstname@yourlastname.com</a>
</div>
</body> </body>
</html> </html>