map

Support

Contains coordinate data for client-side image maps.

The map element is used to specify one or more regions with the area element within an image. Perfect choice if you want to assign multiple links to multiple regions within an image, or one link to a portion of an image.

Example

<img src="area.gif" width="504px" height="126px" border="0px" alt="Solar System" usemap="#SampleMap" />
<map name="SampleMap">
<area shape="rect" coords="1,-1,83,125" alt="rectangle" href="#" />
<area shape="circle" coords="234,57,30" alt="circle" href="#" />
<area shape="poly" coords="363,37,380,40,399,35,420,47,426,63,423,78,430,94,409,90,395,92,379,84,371,67,370,57" alt="polygon" href="#" /> </map>