-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (60 loc) · 2.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Dinner Shopping List</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<header class="header">
<div class="container">
<div class="header-wrapper">
<h1 class="header-title">CSS Dinner Shopping List</h1>
<p class="subtitle">Let’s go to the mall!</p>
</div>
</div>
</header>
<main>
<section class="shoping-list">
<div class="container">
<div class="list-wrapper">
<ul>
<li class="todo-item">
<input class="checkbox" type="checkbox" name="pickles" id="pickles">
<label class="todo-item-label" for="pickles">A lot of pickles <span class="note">(for the next lessons about
CSS)</span></label>
</li>
<li class="todo-item">
<input class="checkbox" type="checkbox" name="apples" id="apples">
<label class="todo-item-label" for="apples">10 apples <span class="note">(for more CSS manipulations)</span></label>
</li>
<li class="todo-item">
<input class="checkbox" type="checkbox" name="oranges" id="oranges">
<label class="todo-item-label" for="oranges">20 oranges <span class="note"> (because they are
awesome)</span></label>
</li>
<li class="todo-item">
<input class="checkbox" type="checkbox" name="plates" id="plates">
<label class="todo-item-label" for="plates">13 plates <span class="note">(hm... they always
dissapear)</span></label>
</li>
<li class="todo-item">
<input class="checkbox" type="checkbox" name="bentos" id="bentos">
<label class="todo-item-label" for="bentos">15 bentos</label>
</li>
<li class="todo-item">
<input class="checkbox" type="checkbox" name="bottle" id="bottle">
<label class="todo-item-label" for="bottle">1 bottle of Sake <span class="note">(for my friends)</span></label>
</li>
</ul>
</div>
<div class="caption">
<h2>Bon appetit :)</h2>
</div>
</div>
</section>
</main>
</body>
</html>