-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable9.html
147 lines (143 loc) · 6.33 KB
/
table9.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Table Assignment</title>
</head>
<body>
<center>
<h1>New Table Assignment </h1>
<table width="600">
<tr>
<td><label for="firstName"><b>First Name</b></label></td>
<td><input type="text" id="firstName" name="firstName" maxlength="30" pattern="[A-Za-z\s]+"></td>
</tr>
<tr>
<td><label for="lastName"><b>Last Name</b></label></td>
<td><input type="text" id="lastName" name="lastName" maxlength="30" pattern="[A-Za-z\s]+"></td>
</tr>
<tr>
<td><b>Date of Birth</b></td>
<td>
<input type="text" name="day" placeholder="Day" size="2" maxlength="2">
<input type="text" name="month" placeholder="Month" size="2" maxlength="2">
<input type="text" name="year" placeholder="Year" size="4" maxlength="4">
</td>
</tr>
<tr>
<td><label for="email"><b>Email Id</b></label></td>
<td><input type="email" id="email" name="email"></td>
</tr>
<tr>
<td><label for="mobile"><b>Mobile Number</b></label></td>
<td><input type="text" id="mobile" name="mobile" maxlength="10" pattern="\d{10}"></td>
</tr>
<tr>
<td><b>Gender</b></td>
<td>
<input type="radio" id="male" name="gender" value="male"> <label for="male">Male</label>
<input type="radio" id="female" name="gender" value="female"> <label for="female">Female</label>
</td>
</tr>
<tr>
<td><label for="address"><b>Address</b></label></td>
<td><textarea id="address" name="address" rows="4" cols="30"></textarea></td>
</tr>
<tr>
<td><label for="city"><b>City</b></label></td>
<td><input type="text" id="city" name="city" maxlength="30" pattern="[A-Za-z\s]+"></td>
</tr>
<tr>
<td><label for="pinCode"><b>Pin Code</b></label></td>
<td><input type="text" id="pinCode" name="pinCode" maxlength="6" pattern="\d{6}"></td>
</tr>
<tr>
<td><label for="state"><b>State</b></label></td>
<td><input type="text" id="state" name="state" maxlength="30" pattern="[A-Za-z\s]+"></td>
</tr>
<tr>
<td><label for="country"><b>Country</b></label></td>
<td><input type="text" id="country" name="country"></td>
</tr>
<tr>
<td><b>Hobbies</b></td>
<td>
<input type="checkbox" id="drawing" name="hobbies" value="Drawing"> <label for="drawing">Drawing</label>
<input type="checkbox" id="singing" name="hobbies" value="Singing"> <label for="singing">Singing</label>
<input type="checkbox" id="dancing" name="hobbies" value="Dancing"> <label for="dancing">Dancing</label>
<input type="checkbox" id="sketching" name="hobbies" value="Sketching"> <label for="sketching">Sketching</label><br>
<input type="checkbox" id="others" name="hobbies" value="Others"> <label for="others">Others</label> <input type="text" name="otherHobby">
<br><br>
</td>
</tr>
<tr>
<td>
<b>Qualification</b>
</td>
<td>
<table border="1">
<tr>
<th>SI.No.</th>
<th>Examination</th>
<th>Board</th>
<th>Percentage</th>
<th>Year of Passing</th>
</tr>
<tr>
<td>1</td>
<td>Class X</td>
<td><input type="text" name="board1" maxlength="10"></td>
<td><input type="number" name="percentage1" step="0.01"></td>
<td><input type="text" name="year1"></td>
</tr>
<tr>
<td>2</td>
<td>Class XII</td>
<td><input type="text" name="board2" maxlength="10"></td>
<td><input type="number" name="percentage2" step="0.01"></td>
<td><input type="text" name="year2"></td>
</tr>
<tr>
<td>3</td>
<td>Graduation</td>
<td><input type="text" name="board3" maxlength="10"></td>
<td><input type="number" name="percentage3" step="0.01"></td>
<td><input type="text" name="year3"></td>
</tr>
<tr>
<td>4</td>
<td>Masters</td>
<td><input type="text" name="board4" maxlength="10"></td>
<td><input type="number" name="percentage4" step="0.01"></td>
<td><input type="text" name="year4"></td>
</tr>
<tr>
<td>5</td>
<td>Other</td>
<td><input type="text" name="board5" maxlength="10"></td>
<td><input type="number" name="percentage5" step="0.01"></td>
<td><input type="text" name="year5"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td><b>Courses Applied For</b></td>
<td>
<input type="radio" id="bca" name="courses" value="BCA"> <label for="bca">BCA</label>
<input type="radio" id="bcom" name="courses" value="B.Com"> <label for="bcom">B.Com</label>
<input type="radio" id="bsc" name="courses" value="B.Sc"> <label for="bsc">B.Sc</label>
<input type="radio" id="ba" name="courses" value="B.A"> <label for="ba">B.A</label>
</td>
</tr>
<tr>
<td colspan="1">
<button type="submit">Submit</button>
</td>
<td colspan="1"><button type="reset">Reset</button></td>
</tr>
</table>
</center>
</body>
</html>