-
Notifications
You must be signed in to change notification settings - Fork 0
/
task1.html
62 lines (54 loc) · 2.02 KB
/
task1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>WebDev-Task1</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"></head>
<body>
<header>
<a href="#">Home</a> |
<a href="#">Contact</a> |
<a href="#">About</a> |
<a href="#">Projects</a>
</header>
<h1>Student Registration Form</h1>
<form action="#">
<label for="firstName">First name:</label><br>
<input type="text" id="firstName" name="firstName"><br>
<label for="lastName">Last name:</label><br>
<input type="text" id="lastName" name="lastName"><br><br>
<label for="dob">DOB:</label><br>
<input type="date" id="dob" name="dob"><br><br><br>
<label for="fatherName">Father's name:</label><br>
<input type="text" id="fatherName" name="fatherName"><br><br>
<label for="doc">Document:</label><br>
<input type="radio" id="aadhar" name="doc" value="aadhar">
<label for="aadhar">Aadhar</label><br>
<input type="radio" id="dl" name="doc" value="dl">
<label for="dl">Driving License</label><br>
<input type="radio" id="other" name="doc" value="other">
<label for="other">Other</label><br><br>
<label for="gender">Gender:</label>
<select 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" rows="4" cols="50"></textarea>
<br><br>
<input type="checkbox" id="confirm" name="confirm" value="confirm">
<label for="confirm">Confirm</label><br>
<input type="submit" value="Submit"><br><br>
</form>
<footer>
<p> Made By Pedduri Meghana
<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>
</p>
</footer>
</body>
</html>