-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodo.html
More file actions
54 lines (42 loc) · 1.3 KB
/
Copy pathtodo.html
File metadata and controls
54 lines (42 loc) · 1.3 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
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todo App</title>
<link rel="stylesheet" href="todo.css">
<script defer src="todo.js"></script>
</head>
<body>
<div id="mytodos">
<header>
<h1>My tasks</h1>
<p id="dateHolder">Date</p>
</header>
<!-- <label for="inputTodo">Input todo</label> -->
<div id="inputHolder">
<input id="inputTodo" type="text" placeholder="What are you upto today?">
<button id="addBtn">+</button>
</div>
<div class="statusHolder">
<p class="status active">All</p>
<p class="status">Active</p>
<p class="status">Completed</p>
</div>
<div id="toDoContainer">
<ul id="todos">
<li>Was utensils</li>
<li>Was clothes andd shayysgsgs</li>
<li>Was edwgbw cbegcbecbec</li>
<li>call everyone once im done</li>
<li>Was utensils an erecfhttwb whdbwdbwhd
<button id="dltBtn">X</button>
<input placeholder="tick" id="checkbox" type="checkbox"> </li>
</ul>
</div>
<footer>
<p id="itemsSelect">0 items selected</p>
</footer>
</div>
</body>
</html>