-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTo do list.html
62 lines (47 loc) · 1.38 KB
/
To do list.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
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ToDo List </title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styling.css">
</head>
<body>
<div class="todoList">
<div class="cover-img">
<div class="cover-inner">
<h3 id="dayName">Sunday</h3>
</div>
</div>
<div class="content">
<form class="add">
<input type="text" name="add" placeholder="Add item..." autocomplete="off">
<div class="input-buttons">
<a href="#0" class="add-todo">
<i class="fas fa-plus add plus-icon"></i>
</a>
</div>
</form>
<ul class="todos align">
<li>
<input type="checkbox" id="todo_1">
<label for="todo_1">
<span class="check"></span>
Grocery store
</label>
<i class="far fa-trash-alt delete"></i>
</li>
<li>
<input type="checkbox" id="todo_4">
<label for="todo_4">
<span class="check"></span>
Pay Netflix
</label>
<i class="far fa-trash-alt delete"></i>
</li>
</ul>
</div>
</div>
</body>
<script src="scripting.js"></script>
</html>