Skip to content

Commit 6953029

Browse files
committed
created html file
1 parent cdc45fb commit 6953029

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

TodoList/index.html

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
</div>
22+
</div>
23+
24+
<script src="index.js"></script>
25+
</body>
26+
</html>

0 commit comments

Comments
 (0)