We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdc45fb commit 6953029Copy full SHA for 6953029
TodoList/index.html
@@ -0,0 +1,26 @@
1
+<!DOCTYPE html>
2
+<html lang="en">
3
+<head>
4
+ <meta charset="UTF-8">
5
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>To-Do list</title>
8
+ <link rel="stylesheet" href="style.css">
9
+</head>
10
+<body>
11
+ <div class="container">
12
+ <h1>TODOLIST</h1>
13
+ <div class="form">
14
+ <input type="text" class="tab" placeholder="Enter task to add" />
15
+ <button class="addToDo">+</button>
16
+ </div>
17
+ <div class="todo"></div>
18
+ <div class="foot">
19
+ <div class="count">0 tasks done</div>
20
+ <button class="removeChecked">Remove Checked ❎</button>
21
22
23
+
24
+ <script src="index.js"></script>
25
+</body>
26
+</html>
0 commit comments