-
Notifications
You must be signed in to change notification settings - Fork 0
/
前端-第1周第2次-HTML(2)-2022·1·7.html
200 lines (195 loc) · 6.94 KB
/
前端-第1周第2次-HTML(2)-2022·1·7.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>前端-第1周第2次-HTML(2)-2022·1·7</title>
</head>
<body>
<form method="post" accept="#" name="person_info">
<table border="1" cellpadding="0" cellspacing="0" style="text-align: center;">
<tr class="1">
<td>
<label for="name">姓名</label>
</td>
<td>
<input type="text" name="name" id="name"/>
</td>
<td>
<label for="sex">性别</label>
</td>
<td>
<select name="sex" id="sex">
<option value="male">男</option>
<option value="female">女</option>
</select>
</td>
<td>
<label for="birth">出生年月</label>
</td>
<td>
<input type="date" name="birth" id="birth"/>
</td>
<td rowspan="3">
<label for="photo">照片</label>
<input type="file" name="photo" accept="image/gif, image/jpeg" id="photo"/>
</td>
</tr>
<tr class="2">
<td>
<label for="birthplace">籍贯</label>
</td>
<td>
<input type="text" name="birthplace" id="birthplace"/>
</td>
<td>
<label for="nationality">民族</label>
</td>
<td>
<input type="text" name="nationality" id="nationality"/>
</td>
<td>
<label for="height">身高</label>
</td>
<td>
<input type="text" name="nationality" id="height"/>
</td>
</tr>
<tr class="3">
<td>
<label for="political">政治面貌</label>
</td>
<td>
<input type="text" name="political" id="political"/>
</td>
<td>
<label for="degree">学历</label>
</td>
<td>
<input type="text" name="degree" id="degree"/>
</td>
<td>
<label for="profession">职业资格</label>
</td>
<td>
<input type="text" name="profession" id="profession"/>
</td>
</tr>
<tr class="4">
<td rowspan="2">
<label for="address">家庭住址</label>
</td>
<td rowspan="2" colspan="2">
<input type="text" name="address" id="address"/>
</td>
<td colspan="2">
<label for="phone">联系电话</label>
</td>
<td colspan="2">
<input type="text" name="phone" id="phone"/>
</td>
</tr>
<tr class="5">
<td colspan="2">
<label for="email">E-mail</label>
</td>
<td colspan="2">
<input type="email" name="email" id="email"/>
</td>
</tr>
<tr class="6">
<td rowspan="3">
<label for="relation">社会关系</label>
</td>
<td>
<label for="r_relation">关系</label>
</td>
<td>
<label for="r_name">姓名</label>
</td>
<td>
<label for="r_political">政治面貌</label>
</td>
<td colspan="3">
<label for="r_workunit">工作单位</label>
</td>
</tr>
<tr class="7">
<td>
<input type="text" name="r_relation" id="r_relation"/>
</td>
<td>
<input type="text" name="r_name" id="r_name"/>
</td>
<td>
<input type="text" name="r_political" id="r_political"/>
</td>
<td colspan="3">
<input type="text" name="r_workunit" id="r_workunit"/>
</td>
</tr>
<tr class="8">
<td>
<input type="text" name="r_relation_0" id="r_relation_0"/>
</td>
<td>
<input type="text" name="r_name_0" id="r_name_0"/>
</td>
<td>
<input type="text" name="r_political_0" id="r_political_0"/>
</td>
<td colspan="3">
<input type="text" name="r_workunit_0" id="r_workunit_0"/>
</td>
</tr>
<tr class="9">
<td>
<label for="education">教育背景</label>
</td>
<td colspan="6">
<textarea name="education" id="education" cols="30" rows="10"></textarea>
</td>
</tr>
<tr class="10">
<td>
<label for="position">任职情况</label>
</td>
<td colspan="6">
<textarea name="position" id="position" cols="30" rows="10"></textarea>
</td>
</tr>
<tr class="11">
<td>
<label for="price">获奖情况</label>
</td>
<td colspan="6">
<textarea name="price" id="price" cols="30" rows="10"></textarea>
</td>
</tr>
<tr class="11">
<td>
<label for="hobby">特长爱好</label>
</td>
<td colspan="6">
<textarea name="hobby" id="hobby" cols="30" rows="10"></textarea>
</td>
</tr>
<tr class="12">
<td>
<label for="statement">个人自述</label>
</td>
<td colspan="6">
<textarea name="statement" id="statement" cols="30" rows="10"></textarea>
</td>
</tr>
<tr class="13">
<td colspan="7">
<br/>
<input type="submit"/>
<input type="reset"/>
<br/>
</td>
</tr>
</table>
</form>
</body>
</html>