-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask4.html
More file actions
62 lines (59 loc) · 1.76 KB
/
task4.html
File metadata and controls
62 lines (59 loc) · 1.76 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
</head>
<style>
#save{
color: rgb(0, 0, 0);
}
</style>
<body>
<form>
<center>
<table >
<caption>Registration form</caption>
<tr>
<td><label for="fn">Full Name:</label></td>
<td><input type="text" name="fn" placeholder="Enter your name"/></td>
</tr>
<tr>
<td><label for="fn">User name:</label></td>
<td><input type="text" name="fn" placeholder="Username"/></td>
</tr>
<tr>
<td><label for="dp">password:</label></td>
<td><input type="password" name="dp" placeholder="Enter new password"/></td>
</tr>
<tr>
<td><label for="dp">Re-password:</label></td>
<td><input type="password" name="dp" placeholder="Re-Enter new password"/></td>
</tr>
<tr>
<td><label for="dp">Address:</label></td>
<td><input type="text" name="dp" placeholder="Address"/></td>
</tr>
<tr>
<td><label for="dp">Age:</label></td>
<td><input type="number" name="dp" placeholder="Age"/></td>
</tr>
<tr>
<td><label>Gender</label></td>
<td>
<select>
<option>Male</option>
<option>Female</option>
</select>
</td>
</tr>
<tr>
<td>
<br>
<input type="submit" value="Save">
</td>
</tr>
</table>
</center>
</form>
</body>
</html>