-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (69 loc) · 2 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" >
<title> Student Registration Form </title>
</head>
<body>
<header>
<a href="www.google.com">Home</a>|<a href="www.google.com">Contact</a>|<a href="www.google.com">About</a>|<a href="www.google.com">Projects</a>
</header>
<br><br>
<h1> Student Registration Form </h1>
<form>
<label for="fname">First name:</label>
<br>
<input type="text" id="fname" name="fname">
<br>
<label for="lname">Last name:</label>
<br>
<input type="text" id="lname" name="lname">
<br><br>
<label for="DOB">DOB:</label>
<br>
<input type="date" id="DOB" name="DOB">
<br><br><br>
<label for="dadname">Father's Name:</label>
<br>
<input type="text" id="dadname" name="dadname">
<br><br>
Document:
<br>
<input type="radio" id="adhaar" name="adhaar">
<label for="adhaar">Adhaar</label>
<br>
<input type="radio" id="drive" name="drive">
<label for="drive">Driving License</label>
<br>
<input type="radio" id="other" name="other">
<label for="other">Other</label>
<br><br>
<label for="gender">Gender:</label>
<select name="gender" id="gender">
<option value="Male">Male</option>
<br>
<option value="Female">Female</option>
<br>
<option value="Other">Other</option>
<br>
</select>
<br><br>
<label for="desc">Description:</label>
<br>
<textarea id="desc" name="desc" rows="4" cols="50"></textarea>
<br><br>
<input type="checkbox" id="confirm" name="confirm">
<label for="confirm">Confirm</label>
<br>
<input type="submit" value="Submit">
</form>
<br><br><br>
<footer>
Made By Geekhaven
<i class="fa fa-address-book" aria-hidden="true"></i>
<i class="fa fa-envelope" aria-hidden="true"></i>
<i class="fa fa-facebook" aria-hidden="true"></i>
<i class="fa fa-instagram" aria-hidden="true"></i>
</footer>
</body>
</html>