-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 1.05 KB
/
Copy pathindex.html
File metadata and controls
33 lines (30 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Advanced Todo List</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>TaskFlow - Your Own To-Do List</h1>
<div class="input-group">
<input type="text" id="taskTitle" placeholder="Task title">
<textarea id="taskDetails" placeholder="Task details"></textarea>
<input type="date" id="taskDeadline">
<button class="add-btn" id="addTaskBtn">Add Task</button>
</div>
<div class="tasks-container">
<div class="active-column">
<h3>Active Tasks</h3>
<div id="incompleteTasks"></div>
</div>
<div class="completed-column">
<h3 id="completedHeader">Completed Tasks</h3>
<div id="completedTasks"></div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>