An image map. The map element is used to define a client side image map.
<MAP NAME="Name"> ... </MAP>
| Attribute | Value | Description |
|---|---|---|
NAME |
Name |
Sets the name for the client side image map. |
<IMG SRC="images/ImageMap.gif" WIDTH="200" HEIGHT="50" ALT="Image Map" USEMAP="#Demomap" BORDER="0">
<MAP NAME="Demomap">
<AREA SHAPE="CIRCLE" COORDS="32,25,22" HREF="circle.html" ALT="Circle">
<AREA SHAPE="RECT" COORDS="66,3,139,45" HREF="rectangle.html" ALT="Rectangle">
<AREA SHAPE="POLY" COORDS="149,43,192,43,171,6" HREF="polygon.html" ALT="Polygon">
<AREA SHAPE="RECT" COORDS="0,0,200,50" NOHREF>
</MAP>