1 <body>
2 <form>
3 文本框:<input type="text" value="123" disabled="disabled" /><br />
4 密码框:<input type="password" /><br />
5 文本域:<textarea cols="35" rows="5"></textarea><br />
6 <input type="submit" value="提交按钮" /><br />
7 <input type="reset" value="重置按钮" /><br />
8 <input type="button" value="登录" /><br />
9 <input type="image" src="20140823165131_ReXfG_thumb_700_0.jpg" width="50" height="50" /><br />
10 <input type="radio" name="sex" /><label>男</label><br />
11 <input type="radio" name="sex" />女<br />
12 <input type="checkbox" checked="checked" disabled="disabled" />鸡腿<br />
13 <input type="checkbox" />爆米花<br />
14 <input type="checkbox" />可乐<br />
15 <input type="file" />文件上传<br />
16 <select size="1">
17 <option>可口可乐</option>
18 <option>百事可乐</option>
19 <option selected="selected">崂山可乐</option>
20 </select>
21 </form>
22 </body>
1 <body>
2 <img src="20140823165131_ReXfG_thumb_700_0.jpg" usemap="map"/>
3 <map name="map">
4 <area shape="circle" coords="506,497,50" href="http//www.baidu.com/" />
5 <area shape="rect" coords="66,190,296,375" href="http://www.360.com/" />
6 </map><br />
7 <div style="height:300px; width:400px; border:1px #FF3300 solid" >
8 <iframe width="600px" height="300" src="http://www.baidu.com/" frameborder="1"></iframe>
9 </div>
10
11 </body>