-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (53 loc) · 1.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Checklist</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="frame">
<div class="list">
<div class="head">
<div class="title">Monday</div>
<div class="subtitle">July 10, 2023</div>
</div>
<ul>
<li>
<input type="checkbox" id="item-1" name="item-1" />
<label for="item-1" class="text">Plan weekly schedule</label>
<label for="item-1" class="button"></label>
<svg width="15px" height="10px" class="checkmark">
<polyline points="1,5 6,9 14,1" />
</svg>
</li>
<li>
<input type="checkbox" id="item-2" name="item-2" />
<label for="item-2" class="text">Team meeting at 10 AM</label>
<label for="item-2" class="button"></label>
<svg width="15px" height="10px" class="checkmark">
<polyline points="1,5 6,9 14,1" />
</svg>
</li>
<li>
<input type="checkbox" id="item-3" name="item-3" />
<label for="item-3" class="text">Update project report</label>
<label for="item-3" class="button"></label>
<svg width="15px" height="10px" class="checkmark">
<polyline points="1,5 6,9 14,1" />
</svg>
</li>
<li>
<input type="checkbox" id="item-4" name="item-4" />
<label for="item-4" class="text">Exercise for 30 minutes</label>
<label for="item-4" class="button"></label>
<svg width="15px" height="10px" class="checkmark">
<polyline points="1,5 6,9 14,1" />
</svg>
</li>
</ul>
</div>
</div>
</body>
</html>