106 lines
2.9 KiB
HTML
106 lines
2.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Lighthouse Island Bistro</title>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
* { box-sizing: border-box; }
|
|
body { font-family: Verdana, Arial, sans-serif;
|
|
background-color: #00005D;
|
|
}
|
|
#wrapper { background-color: #b3c7e6;
|
|
color: #000066;
|
|
width: 80%;
|
|
margin: auto;
|
|
min-width:940px;
|
|
}
|
|
header { background-color: #869dc7;
|
|
color: #00005D;
|
|
font-size: 150%;
|
|
padding: 10px 10px 10px 155px;
|
|
background-image: url(lighthouselogo.jpg);
|
|
background-repeat: no-repeat;
|
|
height: 130px;
|
|
}
|
|
nav { float: left;
|
|
width: 150px;
|
|
letter-spacing:0.1em;
|
|
font-weight: bold;
|
|
}
|
|
nav ul { list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
nav a { text-decoration: none;
|
|
display: block;
|
|
padding: 20px;
|
|
background-color: #b3c7e6;
|
|
border-bottom: 1px solid #ffffff;
|
|
}
|
|
nav a:link { color: #ffffff; }
|
|
nav a:visited { color: #eaeaea; }
|
|
nav a:hover { background-color: #eaeaea;
|
|
color: #869dc7;}
|
|
main { background-color: #ffffff;
|
|
color: #000000;
|
|
padding: 10px 20px;
|
|
overflow: auto;
|
|
display: block;
|
|
}
|
|
h2 { color: #869dc7;
|
|
font-family: arial, sans-serif;
|
|
margin: 5px;
|
|
}
|
|
figure { float: right;
|
|
width: 260px;
|
|
margin: 10px;
|
|
}
|
|
figcaption { text-align: center;
|
|
font-size: .8em;
|
|
font-style: italic;
|
|
}
|
|
footer {font-size:70%;
|
|
text-align: center;
|
|
padding: 10px;
|
|
background-color: #869dc7;
|
|
clear: both;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="wrapper">
|
|
<header>
|
|
<h1>Lighthouse Island Bistro</h1>
|
|
</header>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="index.html">Home</a></li>
|
|
<li><a href="menu.html">Menu</a></li>
|
|
<li><a href="directions.html">Directions</a></li>
|
|
<li><a href="contact.html">Contact</a></li>
|
|
</ul>
|
|
</nav>
|
|
<main>
|
|
<h2>Locally Roasted Free-Trade Coffee</h2>
|
|
<p>Indulge in the aroma of freshly ground roast coffee. Specialty drinks are available hot or cold.</p>
|
|
<h2>Specialty Pastries</h2>
|
|
<p>Enjoy a selection of our fresh-baked, organic pastries, including
|
|
fresh-fruit muffins, scones, croissants, and cinnamon rolls.</p>
|
|
<figure>
|
|
<img src="lighthouseisland.jpg" width="250" height="355" alt="Lighthouse Island">
|
|
<figcaption>Island Lighthouse, Built in 1870</figcaption>
|
|
</figure>
|
|
<h2>Lunchtime is Anytime</h2>
|
|
<p>Savor delicious wraps and sandwiches on hearty, whole-grain breads with locally-grown salad, fruit, and vegetables. </p>
|
|
<h2>Panoramic View</h2>
|
|
<p>Take in some scenery!</p>
|
|
<p>The top of our lighthouse offers a panoramic view of the countryside. Challenge your friends to climb our 100-stair tower.</p>
|
|
</main>
|
|
<footer>Copyright © 2018
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|
|
|