-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (50 loc) · 2.23 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sign In Form By Zulquar Nain Ansari</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="child">
<table class="tab">
<form>
<tr class="row">
<td><label>Full Name </label></td> <td><input type="text"></td>
</tr>
<tr>
<td><label>Last Name </label></td> <td><input type="text"></td>
</tr>
<tr>
<td><label>Email Address </label></td><td><input type="email"></td>
</tr>
<tr>
<td><label>Mobile No. </label></td><td><input type="phone"></td>
</tr>
<tr>
<td><label>Address</label></td>
<td><textarea rows="3" cols="20"></textarea></td>
</tr>
<tr>
<td><label>Qualification </label> </td>
<td><select>
<option>Select Qualification</option>
<option>10th Pass</option>
<option>12th Pass</option>
<option>Graduation</option>
</select></td>
</tr>
<tr>
<td><label>Date of Birth </label></td><td><input type="date"></td>
</tr>
<tr>
<td> <label>Gender</label> </td> <td><input type="radio" name="Gender"> Male <input type="radio" name="Gender">Female </td>
</tr>
<tr><td colspan="2" align="center"><input type="submit"></td>
</tr>
</form>
</table>
</div>
</div>
</body>
</html>