-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRegistration.html
More file actions
39 lines (34 loc) · 1.23 KB
/
Registration.html
File metadata and controls
39 lines (34 loc) · 1.23 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
<html>
<head>
<title>Registration Form</title>
</head>
<body>
<form style="position: relative;">
Name: <br>
<input type="text" id="Uname" name="Name"><br> <br>
Father Name : <br>
<input style="color: cadetblue;" type="text" id="Uname" name="Name"><br><br>
Address:<br>
<input type="text" id="Uname" name="Name"><br><br>
State: <select>
<option>UP</option>
<option>MP</option>
<option>HP</option>
</select>
<br>
Gender: <input type="checkbox">Male <br>
<input type="checkbox">Female <br>
<br>
Hobbies:
<input type="checkbox">Video Games
<input type="checkbox">Reading
<input type="checkbox">Playing Musical Instrument
<input type="checkbox">Singing
<input type="checkbox">Dancing
<input type="checkbox">Outdoor Games
<br><br>
<input type="submit">submit
</form>
</body>
</html>