实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<p>点击太阳或其他行星,注意变化:</p>
6
7
<img src="/upload/images/201509/cfcc6c13c28.gif" width="145" height="126" alt="Planets" usemap="#planetmap">
8
9
<map name="planetmap">
10
  <area shape="rect" coords="0,0,82,126" alt="Sun" href="sun.htm">
11
  <area shape="circle" coords="90,58,3" alt="Mercury" href="mercur.htm">
12
  <area shape="circle" coords="124,58,8" alt="Venus" href="venus.htm">
13
</map>
14
15
</body>
16
</html>
17