Category: Multimedia | Previous: IMG | Next: AREA

<MAP>

Description:

An image map. The map element is used to define a client side image map.

Syntax:

<MAP NAME="Name"> ... </MAP>

Attributes:

Attribute Value Description
NAME Name Sets the name for the client side image map.

Notes:

Example:

<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>


Image Map Circle Rectangle Polygon
Index: HTML Reference | Previous: LI | Next: MARQUEE