-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (67 loc) · 1.9 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Good - GroceryWorks</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Scott Davis <[email protected]>">
<meta name="description" content="An example of well-written, semantic, accessible website.">
<meta name="keywords" content="html5, css, javascript, accessibility, a11y">
<link rel="stylesheet" href="/goodstore/css/index.css">
<style>
body{
display: grid;
grid-template-columns: 0.5fr 2fr 2fr;
grid-template-areas:
"header header header"
"nav main main";
}
header{
grid-area: header;
}
.nav-sidebar{
grid-area: nav;
}
main{
grid-area: main;
}
</style>
</head>
<body>
<header>
<h1><a href="/goodstore">GroceryWorks</a> (Good)</h1>
</header>
<section class="nav-sidebar">
<nav>
<ul>
<li><a href="/goodstore">Specials</a></li>
<li><a href="/goodstore/produce">Produce</a></li>
<li><a href="/goodstore/pasta">Pasta</a></li>
<li><hr></li>
<li><a href="/goodstore/checkout">Checkout</a></li>
</ul>
</nav>
</section>
<main>
<h2>Today's Specials</h2>
<label class="item">
<input type="checkbox" value="White Eggs (1 dozen)">
<img src="/goodstore/img/eggs/white-eggs.jpg"
alt="White Eggs (1 dozen)">
<p>
$2.59<br>
White Eggs (1 dozen)
</p>
</label>
<label class="item">
<input type="checkbox" value="Brown Eggs (1 dozen)">
<img src="/goodstore/img/eggs/brown-eggs.jpg"
alt="Brown Eggs (1 dozen)">
<p>
$2.89<br>
Brown Eggs (1 dozen)
</p>
</label>
</main>
</body>
</html>