-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.html
38 lines (34 loc) · 1.18 KB
/
data.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./data.css">
</head>
<body>
<h3>Users Data</h3>
<div id="functionalities">
<select id="select">
<option >Sort By Age</option>
<option value="asc">Low To High</option>
<option value="des">High To Low</option>
</select>
<input
type="text"
id="search"
placeholder="Search User By Name..."
>
</div>
<div id="filter">
<div id="text">Filter By Batch : </div id="text">
<div id="f1"><label>Web-17</label><input type="checkbox" id="Web-17" value="Web-17"> </div>
<div id="f2"><label>Web-16</label><input type="checkbox" id="Web-16" value="Web-16"> </div>
<div id="f3"> <label>Web-15</label><input type="checkbox" id="Web-15" value="Web-15"></div>
<div id="f4"><label>Web-14</label><input type="checkbox" id="Web-14" value="Web-14"> </div>
</div>
<div id="container"></div>
</body>
</html>
<script src="./data.js"></script>