-
Notifications
You must be signed in to change notification settings - Fork 14
/
try.html
53 lines (35 loc) · 1.22 KB
/
try.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
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="try.css">
</head>
<body>
<h3><b>Filters</b></h3>
<label class="Checkbox"> <small class="text-muted">Shirt</small>
<input type="checkbox" value="shirt">
<span class="checkmark"></span>
</label>
<label class="Checkbox"> <small class="text-muted">TShirt</small>
<input type="checkbox" value="Tshirt">
<span class="checkmark"></span>
</label>
<hr>
<label class="Radiobutton"> <small class="text-muted">Male</small>
<input type="radio" name="gender">
<span class="checkmark" style="border-radius:50%" ></span>
</label>
<label class="Radiobutton"> <small class="text-muted">Female</small>
<input type="radio" name="gender">
<span class="checkmark" style="border-radius:50%"></span>
</label>
<h3><b>Category</b></h3>
<hr>
<h3><b>Brand</b></h3>
<label class="Checkbox"> <small class="text-muted">Highlander</small>
<input type="checkbox" id="filterCheck" data-panelId="brand" class="checkbox-1" value="Highlander" >
<span class="checkmark"></span>
</label>
<hr>
</body>
</html>