forked from Aviral09/DevSocHackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfilters.html
More file actions
84 lines (83 loc) · 3.51 KB
/
filters.html
File metadata and controls
84 lines (83 loc) · 3.51 KB
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
<!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>Preferences</title>
<link rel="stylesheet" href="filter_style.css" />
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap" rel="stylesheet" />
</head>
<body>
<div class="container">
<nav class="navbar">
<div class="logo">
<a href="https://aviralgoel.me/DevSocHackathon/index.html"><img src="./images/Study with me logo.png" alt="logo" width="80" /></a>
</div>
</nav>
<div class="content">
<div class="heading">
<h3>Enter your Preferences</h3>
</div>
<div class="filters">
<form class="my-form">
<div class="box1">
<label>Nickname</label>
<input type="text" name="Name" placeholder="Enter nickname which should be displayed" />
</div>
<div class="box2">
<label>Gender Preference</label>
<h6 class="subtext">(Of other person with whom you would like to study)</h6>
<br />
<input type="radio" id="male" name="gender" value="male" />
<label>Male</label>
<br />
<input type="radio" id="female" name="gender" value="female" />
<label>Female</label>
<br />
<input type="radio" id="random" name="gender" value="random" />
<label>Any</label>
</div>
<div class="box3">
<label>Subject:</label>
<select name="subject" id="choice_subject">
<option value="Any">Choose Any Subject</option>
<option value="Physics">Physics</option>
<option value="Maths">Maths</option>
<option value="Chemistry">Chemistry</option>
<option value="Hindi">Hindi</option>
<option value="Computer Science">Computer Science</option>
<option value="Social Science">Social Science</option>
</select>
</div>
<div class="box4">
<label>Language</label>
<input type="text" id="lang" name="lang" placeholder="Enter preferred language of communication" />
</div>
<div class="box5">
<label>Choose your study time</label>
<select name="subject" id="choice_time">
<option value="Any">Choose Any Time</option>
<option value="9:00AM">9:00AM</option>
<option value="10:00AM">10:00AM</option>
<option value="11:00AM">11:00AM</option>
<option value="12:00PM">12:00PM</option>
<option value="1:00PM">1:00PM</option>
<option value="2:00PM">2:00PM</option>
</select>
</div>
<div class="check">
<input type="checkbox" name="agree" required="required" />
<span>I Agree to the Website's <a href="#">Terms and Conditions</a>.</span>
</div>
<div class="submission">
<input class="next" type="submit" name="submit" value="Next" />
</div>
</form>
</div>
</div>
</div>
</body>
</html>