-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask5.html
94 lines (93 loc) · 2.37 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
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Task5</title>
</head>
<style>
table,
th,
td {
border: 1px solid black;
}
.submit {
margin-left: 5cm;
}
</style>
<body>
<form id="userform">
<table>
<tr>
<th>First Name</th>
<td><input type="text" /></td>
</tr>
<tr>
<th>Last Name</th>
<td><input type="text" /></td>
</tr>
<tr>
<th>Email</th>
<td><input type="text" /></td>
</tr>
<tr>
<th>Password</th>
<td><input type="password" /></td>
</tr>
<tr>
<th>Re-enter Password</th>
<td><input type="password" /></td>
</tr>
<tr>
<th>Gender</th>
<td>
<input type="radio" value="male" />Male
<input type="radio" value="female" />Female
</td>
</tr>
<tr>
<th>Age:</th>
<td><input type="number" /></td>
</tr>
<tr>
<th>Address</th>
<td><textarea form="userform"></textarea></td>
</tr>
<tr>
<th>State</th>
<td><input type="text" /></td>
</tr>
<tr>
<th>Country</th>
<td>
<select name="Country" id="Country">
<option value="">-Country-</option>
<option value="Male">India</option>
<option value="Other"></option>
</select>
</td>
</tr>
<tr>
<th>Language Known</th>
<td>
<input type="checkbox" />English <input type="checkbox" />Kannada
<input type="checkbox" />Hindi <input type="checkbox" />Telugu
</td>
</tr>
<tr>
<td colspan="2">
<input type="checkbox" />Hereby I declare all the given details are
true
</td>
</tr>
<tr>
<td colspan="2" style="text-align: right" ;>
Login to<a href="https://ethnus.com/">Ethnus</a>website
</td>
</tr>
</table>
</form>
<br />
<button class="submit">Register</button>
</body>
</html>