-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathp22.html
More file actions
95 lines (72 loc) · 2.37 KB
/
p22.html
File metadata and controls
95 lines (72 loc) · 2.37 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<html>
<head>
<title>HTML FORMS</title>
</head>
<body>
<centre>
<h1>Student Details Forms</h1>
</centre>
<hr>
<h3>General Information</h3>
<form>
<label for="">First Name</label>
<input type="text" name="firstName" id="firstname" placeholder="firstName">
</form>
<form>
<label for="">Middle Name</label>
<input type="text" name="middleName" id="middlename" placeholder="middleName">
</form>
<form>
<label for="">Last Name</label>
<input type="text" name="lastName" id="lastname" placeholder="lastName">
</form>
<form>
<label for="">Father's Name</label>
<input type="text" name="fatherName" id="fathername" placeholder="fatherName">
</form>
<form>
<label for="">Mother's Name</label>
<input type="text" name="motherName" id="mothername" placeholder="motherName">
</form>
<form>
<label for="">Email</label>
<input type="text" name="email" id="email" placeholder="email">
</form>
<form>
<label for="">Phone Number</label>
<input type="text" name="00000000" id="000000" placeholder="000000">
</form>
<form>
<label for="">Birth Date</label>
<input type="date" name="DD/MM/YY" id="DD/MM/YY" placeholder="DD/MM/YY">
</form>
<form>
<label for="">Gender</label>
<input type="checkbox" name="Male" id="Male" placeholder="Male">Male
<input type="checkbox" name="Female" id="Female" placeholder="Female">Female
<input type="checkbox" name="Others" id="Others" placeholder="Others">Others
</form>
<form>
<label for="">Address</label>
<input type="text" name="address" id="address" placeholder="address">
</form>
<form>
<label for="">Cast</label>
<input type="checkbox" name="General" id="general" placeholder="general">General
<input type="checkbox" name="OBC" id="OBC" placeholder="OBC">OBC
<input type="checkbox" name="ST" id="ST" placeholder="ST">ST
<input type="checkbox" name="SC" id="SC" placeholder="SC">SC
</form>
<form>
<label for="">Nationality</label>
<input type="checkbox" name="India" id="India" placeholder="India">India
<input type="checkbox" name="Other" id="Other" placeholder="Other">Other
</form>
<form action="p3.html" method="post">
<button type="submit">SUBMIT</button>
<button type="reset">RESET</button>
<button type="button">CANCEL</button>
</form>
</form>
</body>
</html>