-
Notifications
You must be signed in to change notification settings - Fork 0
/
priority.html
37 lines (36 loc) · 1.03 KB
/
priority.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Priority Tasks</title>
<link rel="stylesheet" href="assets/styles.css" type="text/css">
</head>
<body>
<header>
<h1>Priority Tasks</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="completed.html">Completed</a></li>
<li><a href="settings.html">Settings</a></li>
</ul>
</nav>
</header>
<main>
<h2>Filter by Priority</h2>
<select id="priority-filter">
<option value="all" selected>All</option>
<option value="high">High</option>
<option value="medium">Medium</option>
<option value="low">Low</option>
</select>
<ul id="priority-task-list">
</ul>
</main>
<footer>
© 2024 Rishabh Agrawal
</footer>
<script src="assets/scripts.js"></script>
</body>
</html>