-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTask1.html
71 lines (57 loc) · 2.13 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
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA==" crossorigin="anonymous" />
</head>
<body>
<header>
<a href="">Home</a>|
<a href="">Contacts</a>|
<a href="">About</a>|
<a href="">Projects</a><br>
</header>
<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">Date of Birth:</label><br>
<input type="date" id="birthtime" name="birthtime"><br><br><br>
<label for="fathern">Father name:</label><br>
<input type="text" id="fathern" name="fathern"><br><br>
<label for="doc">Document:</label><br>
<input type="radio" id="adhaar" name="doc" value="adhaar">
<label for="adhaar">Adhaar</label><br>
<input type="radio" id="drivel" name="doc" value="drivel">
<label for="drivel">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" name="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 name="feedback" id="feedback" cols='50' rows='5'></textarea><br><br>
<input type="checkbox" id="confirm" name="confirm">
<label for="confirm">Confirm</label><br>
<input type="submit" id="submit" name="submit" value="Submit">
</form>
<br><br>
<footer>
<p>Made By GeekHaven
<i class='fas fa-address-book'></i>
<i class='fa fa-envelope'></i>
<i class='fab fa-facebook-f'></i>
<i class='fab fa-instagram'></i>
</p>
</footer>
</body>
</html>