-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (59 loc) · 2.19 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
<!DOCTYPE html>
<html>
<head>
<title>WebD Task-1</title>
<script src="https://kit.fontawesome.com/b328f8934a.js" crossorigin="anonymous"></script>
</head>
<body>
<form>
<a href=". .">Home</a>
| <a href=". .">Contact</a>
| <a href=". .">About</a>
| <a href=". .">Projects</a>
<h2><br>Student Registration Form</h2>
<label for="firstname"> First name:</label>
<br>
<input type="text" name="firstname">
<br>
<label for="lastname">Last name:</label>
<br>
<input type="text" name="lastname"><br>
<br>
<label for="dob">DOB:</label><br>
<input type="date" name="dateoofbirth">
<br><br>
<label for="fathername">Father's Name:</label><br>
<input type="text" name="fname"><br>
<br>
<b>Document</b><br>
<input type="radio" name="adhaar">
<label for="adhaar">Adhaar</label>
<br>
<input type="radio" name="dl">
<label for="dl">Driving License</label>
<br>
<input type="radio" name="other">
<label for="other">Other</label><br><br>
Gender:
<select name = "dropdown">
<option value = "Male" selected>Male</option>
<option value = "female">Female</option>
<option value = "other">Prefer Not to say</option>
</select>
<br><br>
Description :<br>
<textarea rows = "6" cols = "70" name = "description">
</textarea>
<br><br>
<input type="checkbox" name="Confirm" >
<label for="checkbox">Confirm</label><br>
<input type="submit" value="Submit">
</form>
<br><br><br><br>
Made By Geekhaven
<i class="fa fa-facebook" aria-hidden="true"></i>
<i class="fa fa-twitter" aria-hidden="true"></i>
<i class="fa fa-instagram" aria-hidden="true"></i>
<i class="fa fa-envelope" aria-hidden="true"></i>
</body>
</html>