<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> <!-- <img>图片标签: img标签常用的属性: width: 设置图片宽度 height 设置图片高度 alt: 如果图片资源无法找到,那么就显示对应的文字对图片进行说明。 热点图: --> </head> <body> <img src="11.jpg" alt="这个是路飞" width="400" height="300" border="0" usemap="#Map" /> <map name="Map" id="Map"> <area shape="rect" coords="171,178,304,227" href="http:\www.baidu.com" target="_blank" /> <area shape="circle" coords="189,135,27" href="2常用的标签.html" target="_blank" /> </map> </body> </html>