-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask5.html
91 lines (86 loc) · 3.31 KB
/
task5.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Task 5</title>
</head>
<body>
<table border="1" height="auto" width="auto">
<form>
<tr>
<td><label for="FirstName"><h6>First Name;</h6></label></td>
<td><input type="text" id="FirstName"></td>
</tr>
<tr>
<td><label for="LastName"><h6>Last Name;</h6></label></td>
<td><input type="text" id="LastName"></td>
</tr>
<tr>
<td><label for="Email"><h6>Email;</h6></label></td>
<td><input type="email" id="Email"></td>
</tr>
<tr>
<td><label for="Password"><h6>Password:</h6></label></td>
<td><input type="password" id="password"></td>
</tr>
<tr>
<td><label for="Re-password"><h6>Re-enter Password:</h6></label></td>
<td><input type="password" id="Re-password"></td>
</tr>
<tr>
<td rowspan="2"><p><h6>Gender:</h6></p></td>
<td><label for="Male"></label><input type="radio" id="male">Male</td>
</tr>
<tr>
<td><label for="Female"></label><input type="radio" id="female">Female</td>
</tr>
<tr>
<td><label for="Age"><h6>Age:</h6></label></td>
<td><input type="number" id="Age"></td>
</tr>
<tr>
<td><label for="Phone"><h6>Phone Number:</h6></label></td>
<td><input type="tel" id="Phone"></td>
</tr>
<tr>
<td><label for="Address"><h6>Address:</h6></label></td>
<td><input type="text" id="Address"></td>
</tr>
<tr>
<td><label for="State"><h6>State:</h6></label></td>
<td><input type="text" id="State"></td>
</tr>
<tr>
<td><label for="Country"><h6>Country:</h6></label></td>
<td><select name="Choose Country" id="Country">
<option value="India">India</option>
<option value="Other">Other</option>
</td>
</tr>
<tr>
<td><label for="lang"><h6>Languages Known:</h6></label></td>
<td><input type="checkbox" id="English" name="English" value="English">
<label for="English"> English</label>
<input type="checkbox" id="Kannada" name="Kannada" value="Kannada">
<label for="vehicle2"> Kannada</label>
<input type="checkbox" id="Hindi" name="Hindi" value="Hindi">
<label for="vehicle3"> Hindi</label>
<input type="checkbox" id="Telugu" name="Telugu" value="Telugu">
<label for="vehicle3"> Telugu</label></td>
</tr>
<tr>
<td colspan="2">
<input type="checkbox" id="declaration">
<label for="declaration"><h6>Hereby I declare all the given details are true</h6></label></td>
</tr>
<tr>
<td colspan="2" align="right">
Log in to <a href="https://ethnus.com/">Ethnus</a>website
</td>
</tr>
</form>
</table>
<input type="submit" id="Register">
</body>
</html>