-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAditya.html
76 lines (75 loc) · 2.18 KB
/
Aditya.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>
Geekhaven-Aparoksha(Aditya Narayan IIT2020107)
</title>
</head>
<body>
<a href="home.html">Home |</a>
<a href="home.html">Contacts |</a>
<a href="home.html">About |</a>
<a href="home.html">Projects |</a>
<h1>Student Registration Form</h1>
<form action="">
<label for="fname">
First Name:
</label>
<br>
<input type="text" name="fname">
<br>
<label for="lname">Last Name:
</label>
<br>
<input type="text" name="lname">
<br><br>
<label for="DOB">
DOB:
</label>
<br>
<input type="date" name="DOB">
<br><br>
<label for="papakanaam">
Father's Name:
</label>
<br>
<input type="text" name="papakanaam">
<br><br>
<label for="Documents">
Documents:
</label>
<br>
<p> <input type="radio"> Adhaar </p>
<p> <input type="radio"> Driving Lisense</p>
<p> <input type="radio">Other</p>
<br><br>
<label for="sex">
Gender:
</label>
<select>
<option value="male">Male</option>
<option value="female">Female</option>
<option value="other">Other</option>
</select>
<br><br>
<label for="aurbatao">
Desciption:
</label>
<br>
<textarea rows="3" cols="40"></textarea>
<br><br>
<input type="checkbox" name="pakkana">
<label for="pakkana">
Confirm
</label>
<br>
<label for="submit">
Submit:
</label>
<input type="submit" name="submit">
<br>
</form>
<br><br><br><br><br>
<p>Made by Geekhaven </p>
</body>
</html>