<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> 图像映射 map案例 </title>
</head>
<body>
<img src="图像路径" usemap="#sun" title="太阳">
<map name="sun" id="sun">
<area shape="rect" coords="0,0,110,260" href="http://www.baidu.com">矩形对角
<area shape="circle" coords="177,141,13" href="http://www.imeixue.cn" target="_blank">圆圆心半径
</map>
</body>
</html>