-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 1.25 KB
/
Copy pathindex.html
File metadata and controls
33 lines (33 loc) · 1.25 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>Task Management App</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Task Management App</h1>
<button onclick="toggleDarkMode()">Toggle Dark Mode</button>
<div class="task-input">
<input type="text" id="taskTitle" placeholder="Task Title">
<input type="text" id="taskDescription" placeholder="Description">
<input type="date" id="taskDueDate">
<select id="taskPriority">
<option value="low">Low</option>
<option value="medium">Medium</option>
<option value="high">High</option>
</select>
<button onclick="addTask()">Add Task</button>
</div>
<div class="task-filters">
<button onclick="filterTasks('all')">All</button>
<button onclick="filterTasks('pending')">Pending</button>
<button onclick="filterTasks('completed')">Completed</button>
</div>
<ul id="taskList"></ul>
</div>
<script src="script.js"></script>
</body>
</html>