-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (25 loc) · 970 Bytes
/
Copy pathindex.html
File metadata and controls
27 lines (25 loc) · 970 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Filter</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
</head>
<body>
<h1 class="text-3xl font-semibold">Filter Methods</h1>
<div class="flex items-center justify-center w-full center my-3">
<input class="border rounded w-1/2 p-3 text-lg " type="search" id="search_input" placeholder="Search" />
<select class="border rounded p-3 text-lg ml-1 cursor-pointer " name="priority" id="priority">
<option value="">Select</option>
<option value="High">High</option>
<option value="Medium">Medium</option>
<option value="Low">Low</option>
</select>
</div>
<div id="todo_list">
</div>
<script src="app.js"></script>
</body>
</html>