forked from ccccourse1/wp110b
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomework4
49 lines (48 loc) · 1.12 KB
/
homework4
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
<!DOCTYPE html>
<html>
<head>
<title>註冊表單</title>
<style>
.form
{
padding: 13px;
position: absolute;
left: 50%;
top: 50%;
margin-left: -200px;
margin-top: -200px
}
input[type=text], input[type=password],input[type=email] {
padding:8px 14px;
width:200px;
border-radius:5px;
border: 1px #cccccc solid;
</style>
</head>
<body>
<form>
<table>
<tr>
<td>Name :</td>
<td><input type="text"></td>
</tr>
<tr>
<td>Password :</td>
<td><input type="password"></td>
</tr>
<tr>
<td>Gender :</td>
<td>
<input type="radio" name="gander">male
<input type="radio" name="gender">female
</td>
</tr>
<tr>
<td>Email :</td>
<td><input type="email"></td>
</tr>
<button class="Button">Sign up</button>
</table>
</form>
</body>
</html>