forked from rasmirajesh/tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodo.html
More file actions
24 lines (24 loc) · 689 Bytes
/
todo.html
File metadata and controls
24 lines (24 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modern To-Do App</title>
<link rel="stylesheet" href="style2.css">
</head>
<body>
<div class="app-container">
<h1 class="app-title">Todo App</h1>
<div class="input-section">
<input type="text" id="taskInput" placeholder="Add your new todo">
<button id="addTaskBtn">+</button>
</div>
<ul id="taskList"></ul>
<div class="footer">
<p id="pendingTasks">You have 0 pending tasks</p>
<button id="clearTasksBtn">Clear All</button>
</div>
</div>
<script src="todo.js"></script>
</body>
</html>