-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path表单设计.html
37 lines (37 loc) · 1017 Bytes
/
表单设计.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
<html>
<head>
<title>表单标记</title>
<meta charset='UTF-8'>
</head>
<body>
<form>
账号:<input type="text" name="zhangh" value="" size='10' maxlength="10">
<br>
<br>
密码:<input type="password" name="mima" value='' size='10'>
<br>
<br>
<input type="hidden" value="隐藏" name='mimayincang'>
爱好:<input type="checkbox" name='tiyu' checked>体育<input type="checkbox" name='唱歌'>唱歌
<br>
<br>
性别:<input type="radio" name='sex' checked>男<input type="radio" name='sex'>女
<br>
<br>
自我介绍:
<textarea cols='35' rows='10' name="自我介绍">这里是自我介绍
</textarea>
<br>
<br>
地址:
<select name='dizhi'>
<option value='sichuan'>四川</option>
<option value='shanghai'>上海</option>
<option value='chongqing'>重庆</option>
</select>
<input type="submit" value='提交'>
<input type="reset" value="重置">
<input type="button" value="按钮">
</form>
</body>
</html>