-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNihar-code.html
More file actions
51 lines (45 loc) · 2.02 KB
/
Nihar-code.html
File metadata and controls
51 lines (45 loc) · 2.02 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
<!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>WebD Task 1</title>
</head>
<body>
<a href=>Home</a>|<a href=http://support.google.com/google-ads>Contact</a>|<a href=http://support.google.com/google-ads>About</a>|<a href=http://support.google.com/google-ads>Projects</a>
<br><br><br>
<h1>Student Registration Form</h1>
<br>
<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>
<label for="fathername">Father's Name:</label><br>
<input type="text" id="fathername" name="fathername"><br><br>
<label for="document">Document:</label><br>
<input type="radio" id="adhaar" name="adhaar">
<label for="adhaar">Adhaar</label><br>
<input type="radio" id="drivinglicense" name="drivinglicense">
<label for="drivinglicense">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>
<option value="female">Female</option>
<option value="other">Other</option>
</select>
<br><br>
<label for="Description">Description:</label><br>
<textarea id="Description" name="Description" rows="4" cols="50"></textarea><br><br><br>
<input type="checkbox" id="confirm" name="confirm">
<label for="confirm">Confirm</label><br>
<input type="submit">
</form>
<br><br><br>
Made by Geekheaven
<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>
</body>
</html>