Defines a hyperlink region within an image map.
The area element specifies a region and a link within an image object. It is a perfect choice if you want to assign multiple links to multiple regions within an image, or one link to a portion of an image.
<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>