-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTask4_HTML.html
More file actions
64 lines (61 loc) · 2.18 KB
/
Copy pathTask4_HTML.html
File metadata and controls
64 lines (61 loc) · 2.18 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
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.container {
margin: 250px;
padding-left: 250px;
}
.set{
width: 300px;
margin: 10px;
}
</style>
</head>
<body>
<div class="container">
<form>
<table>
<tr>
<td><label for="Name">Full Name:</label></td>
<td><input type="text" class="set" id="Name" name="Name"></td>
</tr>
<tr>
<td><label for="Name">User Name:</label></td>
<td><input type="text" class="set" id="Name" name="Name"></td>
</tr>
<tr>
<td><label for="Password">Password:</label></td>
<td><input type="password" class="set" id="Password" name="Password"></td>
</tr>
<tr>
<td><label for="Password">Re_Password:</label></td>
<td><input type="password" class="set" id="Password" name="Password"></td>
</tr>
<tr>
<td><label for="Address">Address:</label></td>
<td><input type="text" class="set" id="Address" name="Address"></td>
</tr>
<tr>
<td><label for="Age">Age:</label></td>
<td><input type="number" class="set" id="Age" name="Age"></td>
</tr>
<tr>
<td><label for="gender">Gender:</label></td>
<td>
<select id="gender" name="gender">
<option value="male" class="set">Male</option>
<option value="female" class="set">Female</option>
<option value="other" class="set">other</option>
</select>
</td>
</tr>
</table>
<br><button type="submit">Save</button>
</form>
</div>
</body>
</html>