HTML表单

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 2 <html xmlns="http://www.w3.org/1999/xhtml">
 3 <head>
 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 5 <title>无标题文档</title>
 6 </head>
 7 
 8 <body>
 9 <form>
10 账号:<input type="text" value=""/><br />
11 
12 密码:<input type="password" value="" /><br />
13 备注<textarea cols="35" rows="5"></textarea><br />
14 <input type="submit" value="提交" /><br />
15 <input type="reset" value="重置" /><br />
16 <input type="button" value="登陆" /><br />
17 <input type="image" src="wallpaper_a211337.jpg" width="500" /><br />
18 <input type="radio"  name="sex"/><br />
19 <input type="radio"  name="sex"/><br />
20 <input type="checkbox"  checked="checked" disabled="disabled"/>可乐<br />
21 <input type="checkbox" />百事可乐<br />
22 <input type="checkbox" />崂山可乐<br />
23 <input type="file" /><br />
24 <select size="1">
25 <option value="">汉堡</option>
26 <option>鸡米花</option>
27 <option selected="selected">鸡腿</option>
28 </select>
29 
30 </form>
31 </body>
32 </html>
View Code

posted on 2016-03-20 16:27  beens  阅读(143)  评论(0编辑  收藏  举报

导航