-
Notifications
You must be signed in to change notification settings - Fork 10
/
register.html
30 lines (26 loc) · 1.08 KB
/
register.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
<html>
<head>
<link rel="stylesheet" href="regstyle.css">
<link href="https://fonts.googleapis.com/css2?family=Uchen&display=swap" rel="stylesheet">
</head>
<body>
<div class="form">
<h1 class="heading">Give us some details</h1>
<div class="forms">
<label for="name">Your Name:</label>
<input type="text" id="name" name="name" placeholder="Enter your Name" >
<label for="age">Your Age:</label>
<input type="number" id="age" name="age" placeholder="Enter your Age" >
<label for="gender">Gender:</label>
<select name="gender" id="gender" >
<option value="" >Choose Gender</option>
<option value="male">Male</option>
<option value="female">Female</option>
<option value="other">Other</option>
</select>
<label for="email">E-Mail Id:</label>
<input type="email" id="email" name="email" placeholder="Enter your E-Mail Id" >
</form></div>
<a class="btn" href="quiz.html">START QUIZ</a>
</body>
</html>