-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (32 loc) · 1.11 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
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To-Do-List APP</title>
<link rel="stylesheet" href="Style.css">
</head>
<body>
<div class="container">
<div class="firstpart">
<h1>To-Do-List</h1>
<form class="taskForm">
<input type="text" id="taskInput" placeholder="Add New Task Here..." />
<button type="submit" id="addTaskBtn">Add Task</button>
<select id="filterDropdown">
<option value="all">All Tasks</option>
<option value="done">Done Tasks</option>
<option value="undone">UnDone Tasks</option>
</select>
</form>
</div>
<div id="deleteBtn">
<input type="text" id="searchTask" placeholder="Type your specific task title...">
<button id="deleteTasksBtn">Delete All Tasks</button>
</div>
<div id="taskList">
</div>
</div>
<script src="Task-06.js"></script>
</body>
</html>