-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodo.html
More file actions
55 lines (48 loc) · 1.99 KB
/
todo.html
File metadata and controls
55 lines (48 loc) · 1.99 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
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="todo.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>Todo List</title>
</head>
<body>
<div class="row">
<div class="col-sm-4"><span class="border"></span></div>
<div class="col-sm-4">
<div class="header">
<h1 class="display-4">My Daily ToDo List</h1>
<span class="complete"> Tasks Completed: </span> <br>
<span class="totalTasks"> Total Tasks: </span> <br>
<span class="efficiency"> Efficiency: </span> <br>
<span class="date"> Date: </span> <br>
</div>
<div class="msg">
</div>
<div class="inputArea">
<label for="task"> <span>Task: </span> </label>
<input type="text" id="task">
<button class="btnAdd">Add Task</button>
<br>
<br>
</div>
<section class="mainList">
<header>ToDo List</header>
<ul class="toDolistitems">
</ul>
<button class="btnClear" style="display: none;" >Clear Tasks</button>
</section>
<section class="completedList">
<header>Completed Tasks</header>
<ul class="done">
</ul>
</section>
</div>
<div class="col-sm-4"></div>
</div>
<script src="todo.js">
</script>
</body>
</html>