-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask4.html
57 lines (56 loc) · 1.94 KB
/
task4.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
<html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Task-4</title>
<style>
input,select{
margin-left: 100px;
}
#save{
margin-left: 0px;
border-radius: 3px;
border-color: rgb(206, 161, 77);
}
</style>
</head>
<body>
<form style="margin: 10px;">
<table>
<tbody><tr>
<td><label for="Full Name">Full Name:</label></td>
<td><input type="text" placeholder="Vincent Maverick Durano"> <br></td>
</tr>
<tr>
<td><label for="Username">Username:</label></td>
<td><input type="text" placeholder="Vinz"> <br></td>
</tr>
<tr>
<td><label for="Password">Password:</label></td>
<td><input type="password"> <br></td>
</tr>
<tr>
<td><label for="Re Password">Re Password:</label></td>
<td><input type="password"><br></td>
</tr>
<tr>
<td><label for="Address">Address:</label></td>
<td><input type="text" placeholder="Cebu, Phillippines"> <br></td>
</tr>
<tr>
<td><label for="Age">Age:</label></td>
<td><input type="number" placeholder="22"> <br></td>
</tr>
<tr>
<td>Gender:</td>
<td>
<select name="Gender">
<option value="Male">Male</option>
<option value="Female">Female</option>
<option value="Other">Other</option>
</select>
</td>
</tr>
</tbody></table>
<input id="save" type="submit" value="Save">
</form>
</body></html>