-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (26 loc) · 881 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.css"
integrity="sha256-ECB9bbROLGm8wOoEbHcHRxlHgzGqYpDtNTgDTyDz0wg=" crossorigin="anonymous" />
<title>Task List</title>
</head>
<body>
<div class="container">
<h4>Task List</h4>
<form id="task_form">
<input type="text" id="new_task" placeholder="New Task">
<input type="submit" value="Add Task">
</form>
<hr>
<h4>Tasks</h4>
<input type="text" id="task_filter" placeholder="Filter Task">
<ul id="tasks">
</ul>
<button id="clear_task_btn">Clear Tasks</button>
</div>
<script src="js/script.js"></script>
</body>
</html>