-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilters.html
90 lines (74 loc) · 2.13 KB
/
filters.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<html>
<head>
<style>
.b {
display: inline-block;
margin-left: 20%;
}
p {
-webkit-text-fill-color: white;
font-family: cursive;
font-size: 25px;
}
.a {
height: 40px;
width: 200px;
border-radius: 50px;
opacity: 1;
font-size: 20PX;
}
.c {margin-left: 40%;
background-color: transparent;
height: 55px;
width: 170px;
-webkit-text-fill-color: white;
font-size: 20px;
font-family: sans-serif;
border-color: white;
border-radius: 100px;
}
.c:hover {
background-color:ghostwhite;
-webkit-text-fill-color: black;
cursor: pointer;
}
</style>
<title>Add Filters
</title>
</head>
<body background="bg_3.jpg" style="background-size: cover; background-position: center;">
<div class="b">
<p>BRANCH</p>
<input type="text" div class="a">
</div>
<div class="b">
<p>YEAR</p>
<input type="text" div class="a">
</div>
<div class="b">
<p>GROUPS</p>
<input type="text" div class="a">
</div>
<div class="b">
<p>STATE</p>
<input type="text" div class="a">
</div>
<div class="b">
<p>GENDER</p>
<input type="text" div class="a">
</div>
<div class="b">
<p>CG</p>
<input type="text" div class="a">
</div>
<div class="b">
<p>BHAWAN</p>
<input type="text" div class="a">
</div>
<div class="b">
<p>OTHERS</p>
<input type="text" div class="a">
</div><br><br>
<a href="search.html" ><button div class="c" >SEARCH NOW</button></a>
</body>
</html>