ASDV-WebDev/Semester 1/Chapter ZIPs/HTML/chapter6/starter3.html

57 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>KayakDoorCounty.net</title>
<style>
body { background-color: #000033;
font-family: Verdana, Arial, sans-serif;
}
header { background-color: #000033;
color: #FFFFB9;
background-image: url(headerbackblue.jpg);
background-position: right;
background-repeat: no-repeat;
}
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; }
nav { font-weight: bold;
font-size: 1.25em;
background-color: #FFFFCC;
}
nav a { text-decoration: none; }
main { background-color: #004D99;
}
footer { font-style: italic;
text-align: center;
background-color: #000033;
color: #FFFFCC;
}
</style>
</head>
<body>
<header>
<h1>KayakDoorCounty.net</h1>
</header>
<nav>
<a href="index.html">Home</a> &nbsp;
<a href="tours.html">Tours</a> &nbsp;
<a href="reservations.html">Reservations</a> &nbsp;
<a href="contact.html">Contact</a> &nbsp;
</nav>
<main>
<h2>Your next adventure is only a paddle away ....</h2>
<p>Take a guided kayak tour while you explore the shoreline of scenic Door County. </p>
<h3>Featured tours this week:</h3>
<ul>
<li>Cana Island</li>
<li>Mink River</li>
<li>Europe Lake</li>
</ul>
</main>
<footer>
<small><i>Copyright &copy; KayakDoorCounty.net</i></small>
</footer>
</body>
</html>