blob: 06143b724b48a311cd4da92fc5810e2518cb8184 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Coffee House</title>
<meta charset="utf-8">
<style>
body { color: #221811;
font-family: Verdana, Arial, sans-serif;
width: 80%;
min-width: 750px;
}
header { background-color: #D2B48C;
background-image: url(coffeelogo.jpg);
background-repeat: no-repeat;
}
h1 { text-indent: 4em;
font-size: 4em;
height: 150px;
line-height: 220%;
}
nav { font-weight: bold;
text-indent: 1em;
font-size: 2em;
}
nav a { color: #804D33; text-decoration: none; }
#wrapper { background-color: #FCEBB6; }
</style>
</head>
<body>
<div id="wrapper">
<header>
<h1>Coffee House</h1>
</header>
<nav>
<a href="index.html">Home</a>
<a href="menu.html">Menu</a>
<a href="music.html">Music</a>
<a href="jobs.html">Jobs</a>
</nav>
<main>
<h2>Follow the Winding Road to Coffee House</h2>
<h3>Coffee House features:</h3>
<ul>
<li>Specialty Coffee and Tea</li>
<li>Bagels, Muffins, and Gluten-free Pastries</li>
<li>Organic Salads</li>
<li>Music and Poetry Readings</li>
<li>Open Mic Night</li>
</ul>
<div>
12010 Garrett Bay Road<br>
Ellison Bay, WI 54210<br>
888-555-5555<br><br>
</div>
</main>
<footer>
Copyright © Coffee House<br>
</footer>
</div>
</body>
</html>
|