-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (53 loc) · 2.12 KB
/
index.html
File metadata and controls
53 lines (53 loc) · 2.12 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="list_of_dinner.css">
</head>
<body>
<header>
<h1>CSS diner shopping list</h1>
<p>Let's go to the mail!</p>
</header>
<section>
<div class="list_dinner">
<ul>
<li>
<label for="pickles" class="container">
<input type="checkbox" name="pickles" id="pickles"><span class="checkmark">A lot of pickles<small> (for the next lessons about CSS)</small></span>
</label>
</li>
<li>
<label for="apple" class="container">
<input type="checkbox" name="apple" id="apple"><span class="checkmark">10 apples<small> (for more CSS manipulation)</small></span>
</label>
</li>
<li>
<label for="oranges" class="container">
<input type="checkbox" name="oranges" id="oranges"><span class="checkmark">20 oranges<small> (because they are awesome)</small></span>
</label>
</li>
<li>
<label for="plates" class="container">
<input type="checkbox" name="plates" id="plates"><span class="checkmark">13 plates<small> (hm...they always disappear)</small></span>
</label>
</li>
<li>
<label for="bentos" class="container">
<input type="checkbox" name="bentos" id="bentos"><span class="checkmark">15 bentos</span>
</label>
</li>
<li>
<label for="bottle" class="container">
<input type="checkbox" name="bottle" id="bottle"><span class="checkmark">1 bottle of Sake^_^<small> (for my friends)</small></span>
</label>
</li>
</ul>
</div>
<div class="bon">
<p>Bon appetit:)</p>
</div>
</section>
</body>
</html>