-
Notifications
You must be signed in to change notification settings - Fork 0
/
task4html.html
52 lines (51 loc) · 1.88 KB
/
task4html.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML Task4</title>
</head>
<body>
<a href="index.html"> BACK TO INDEX</a>
<h1>HTML:Task 4</h1>
<table cellpadding="2px">
<form method="post" action="#">
<tr>
<td><label for="fullname">Full Name:</label></td>
<td><input type="text" name="fullname" id="fullname" ></td>
</tr>
<tr>
<td><label for="user">Username:</label></td>
<td><input type="text" name="user" id="user"></td>
</tr>
<tr>
<td><label for="pass">Password:</label></td>
<td><input type="password" name="pass" id="pass"></td>
</tr>
<tr>
<td><label for="repass">Re Password:</label></td>
<td><input type="password" name="repass" id="repass"></td>
</tr>
<tr>
<td><label for="address">Address:</label></td>
<td><input type="text" name="address" id="address" ></td>
</tr>
<tr>
<td><label for="age">Age:</label></td>
<td><input type="number" name="age" id="age" ></td>
</tr>
<tr>
<td><label for="gender">Gender:</label></td>
<td><select id="gender">
<option>Male</option>
<option>Female</option>
<option>Other</option>
</select></td>
</tr>
<tr>
<td colspan="2"><button type="submit">Save</button></td>
</tr>
</form>
</table>
</body>
</html>