-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (31 loc) · 1.12 KB
/
index.html
File metadata and controls
34 lines (31 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Todo List - Chelumalla Pavan</title>
<link href="style.css" rel="stylesheet">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<div class="container">
<h2 class="head">
My Todo List
</h2>
<div class="create-todo">
<input onkeypress="enterKey(event)" type="text" id="inputTodo" placeholder="Add some Todo..." aria-label="Add Todo">
<button onclick="addTodo()" aria-label="Add Todo">
<i class="bx bx-plus"></i>
</button>
</div>
<div class="task-list">
<!-- Tasks will be dynamically added here -->
</div>
<div class="foot">
<span> You have <span id="CountPendingTasks">0</span> pending tasks</span>
<button onclick="clearAll()">Clear All</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>