-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (55 loc) · 1.37 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<table border="1">
<tr>
<td colspan="2" align="center">
信息统计表</td>
</tr>
<tr>
<td>姓名:</td>
<td><input type="text" name="userName"></td>
</tr>
<tr>
<td>年龄:</td>
<td><input type="number" name="number"></td>
</tr>
<tr>
<td>性别:</td>
<td><input type="radio" name="sex" value="1">男
<input type="radio" name="sex" value="0">女</td>
</tr>
<tr>
<td>爱好:</td>
<td>
<input type="checkbox" name="hobby" value="1">旅游
<input type="checkbox" name="hobby" value="2">登山
<input type="checkbox" name="hobby" value="3">健身
<input type="checkbox" name="hobby" value="4">上网
<input type="checkbox" name="hobby" value="5">游泳
</td>
</tr>
<tr>
<td>学历</td>
<td><select name="degree">
<option value="">--请选择--</option>
<option value="1">大专</option>
<option value="2">本科</option>
<option value="3">硕士</option>
<option value="4">博士及以上</option></select></td>
</tr>
<tr>
<td>自我介绍</td>
<td><textarea name="comment" rows="5" cols="30"></textarea></td>
</tr>
<tr>
<td></td>
<td>
<input type="submit" value="提交"> <input type="reset" value="重置"></td>
</tr>
</body>
</html>