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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Lighthouse Island Bistro</title>
<meta charset="utf-8">
<!--I checked my work and compared
it to the work provided by the student files
My book had some extra stuff in it that I had to remove.
Following is what it had:
@supports (display: grid) {
#wrapper { display: grid;
grid-template-columns: 150px 1fr;
grid-template-rows: 160px auto auto; }
header { grid-row: 1 / 2; grid-column: 1 / 3; }
nav { grid-row: 2 / 3; grid-column: 1 / 2; }
main { grid-row: 2 / 3; grid-column: 2 / 3; }
footer { grid-row: 3 / 4; grid-column: 1 / 3; }
}
I'd love to use the most up to date version, but,
as stated, textbooks are incredibly expensive
and even renting is taxing.-->
<style>
* { box-sizing: border-box; margin: 0; }
body {font-family: Verdana, Arial, sans-serif; }
nav ul { list-style-type: none;
padding: 1em; }
nav a { text-decoration: none;
padding: 1em;
font-weight: bold;
}
header { background-color: #869dc7;
color: #00005D;
background-image: url(8.4.light2.jpg);
padding: 1em 0 1em 190px;
font-size: 130%;
min-width: 700px;
background-repeat: no-repeat;
font-family: "Times New Roman", serif;
}
nav { float: left; }
main { padding: 1em; }
h2 { color: #869dc7;
font-family: arial, sans-serif;
}
figure { text-align: center; }
figcaption { font-style: italic; text-align: center;}
footer { background-color: #869dc7;
font-size:70%;
text-align: center;
padding: 2em;
}
#wrapper {
display: grid;
grid-template-columns: 150px 1fr;
grid-template-rows: 100px auto 50px;
}
header { grid-row: 1 / 2; grid-column: 1 / 3; }
nav { grid-row: 2 / 3; grid-column: 1 / 2; }
main { grid-row: 2 / 3; grid-column: 2 / 3; }
footer { grid-row: 3 / 4; grid-column: 1 / 3; }
</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="rooms.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>
<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! 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 © </footer>
</div>
</body>
</html>
|