-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (66 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.png">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>CSS dinner shopping list</title>
</head>
<body>
<header class="ba-header">
<h1 class = "ba-header__title">CSS Diner Shopping List</h1>
<p class = "ba-header__description">Let's go to the mall!</p>
</header>
<div class="ba-container">
<main class = "ba-main">
<ul class = "ba-shopping-list">
<li>
<input type="checkbox" id="check1">
<label for="check1">
<span>A lot of pickles</span>
<span class = "small">for the next lessons about CSS</span>
</label>
</li>
<li>
<input type="checkbox" id="check2">
<label for="check2">
<span>10 apples</span>
<span class = "small">for more CSS manipulations</span>
</label>
</li>
<li>
<input type="checkbox" id="check3">
<label for="check3">
<span>20 oranges</span>
<span class = "small">because they are awesome</span>
</label>
</li>
<li>
<input type="checkbox" id="check4">
<label for="check4">
<span>13 plates</span>
<span class = "small">hm... they always disappear</span>
</label>
</li>
<li>
<input type="checkbox" id="check5">
<label for="check5">
<span>15 bentos</span>
<span></span>
</label>
</li>
<li>
<input type="checkbox" id="check6">
<label for="check6">
<span>1 bottle of Sake ^_^</span>
<span class = "small">for my friends</span>
</label>
</li>
</ul>
</main>
<footer class = "ba-footer">
<p>Bon appetit :)</p>
</footer>
</div>
</body>
</html>