-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 1.03 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Enhanced To-Do List App</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="app-container">
<h1>To-Do List App</h1>
<div class="task-input">
<input type="text" id="taskInput" placeholder="Add a new task..." />
<select id="prioritySelector">
<option value="low">Low Priority</option>
<option value="medium">Medium Priority</option>
<option value="high">High Priority</option>
</select>
<button id="addTaskButton">Add Task</button>
</div>
<div class="task-filters">
<button id="filterAll">All</button>
<button id="filterCompleted">Completed</button>
<button id="filterPending">Pending</button>
</div>
<ul id="taskList"></ul>
</div>
<script src="script.js"></script>
</body>
</html>