-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRevathi2306.html
More file actions
57 lines (52 loc) · 2.09 KB
/
Revathi2306.html
File metadata and controls
57 lines (52 loc) · 2.09 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
52
53
54
55
56
57
<!DOCTYPE html>
<head>
<a href="https://www.w3schools.com">Home</a>
<a href="https://www.w3schools.com">Contact</a>
<a href="https://www.w3schools.com">About</a>
<a href="https://www.w3schools.com">Projects</a>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<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>
<label for="fathername">Father's Name</label><br>
<input type="text" id="fathername" name="fathername">
<br><br>
<lable for="doc">Document: </lable><br>
<input type="radio" id="aadhaar" name="doc" value="aadhaar">
<label for="aadhaar">Aadhaar</label><br>
<input type="radio" id="dlic" name="doc" value="dlic">
<label for="dlic">Driving License</label><br>
<input type="radio" id="oth" name="doc" value="oth">
<label for="oth">Other</label>
<br><br>
<label for="gen">Gender: </label>
<select id="gen" name="gen">
<option value="male">Male</option>
<option value="female">Female</option>
<option value="other">Other</option>
</select>
<br><br>
<label for="desr">Description: </label><br>
<textarea name="desr" rows="8" cols="50"></textarea>
<br><br>
<input type="checkbox" id="conf" name="conf" value="conf">
<label for="conf"> Confirm</label><br>
<input type="submit" value="Submit">
</form>
<br><br>
</body>
<footer>
Made By Revathi
<i class="fa fa-instagram" aria-hidden="true"></i>
<i class="fa fa-quora" aria-hidden="true"></i>
<i class="fa fa-youtube-play" aria-hidden="true"></i>
</footer>