blob: cbfd2f1477abdd01286d745c43d3b92bc199fd0f (
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
48
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Lighthouse Island Bistro</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="11.8.bistro.css" rel="stylesheet">
</head>
<body>
<div id="wrapper">
<nav>
<ul>
<li><a href="11.8.index.html">Home</a></li>
<li><a href="11.8.coffee.html">Coffee</a></li>
<li><a href="11.8.cuisine.html">Cuisine</a>
<ul>
<li><a href="11.8.breakfast.html">Breakfast</a></li>
<li><a href="11.8.lunch.html">Lunch</a></li>
<li><a href="11.8.dinner.html">Dinner</a></li>
</ul>
</li>
<li><a href="11.8.directions.html">Directions</a></li>
<li><a href="11.8.contact.html">Contact</a></li>
</ul>
</nav>
<header>
<h1>Lighthouse Island Bistro</h1>
<span>the best coffee on the coast</span>
</header>
<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>
<h2>Lunch and Light Dinners</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 © 2020
</footer>
</div>
</body>
</html>
|