<AREA
ALT=text
CLASS=type
COORDS=coords
HREF=url
ID=value
NOHREF
NOTAB
SHAPE=shape-type
STYLE=css1 properties
TABINDEX=n
TARGET=window
TITLE=text>
Specifies the shape of a "hot spot" in a client-side image map.
RECT | Rectangle. Takes four coordinates: x1, y1, x2, and y2. This is the default. |
RECTANGLE | Rectangle. Takes four coordinates: x1, y1, x2, and y2. |
CIRC | Circle. Takes three coordinates: centerx, centery, and radius. |
CIRCLE | Circle. Takes three coordinates: centerx, centery, and radius. |
POLY | Polygon. Takes three or more pairs of coordinates denoting a polygonal region. |
POLYGON | Polygon. Takes three or more pairs of coordinates denoting a polygonal region. |
window | Specifies to load the link into the targeted window. The window must begin with an alphanumeric character to be valid, except for the following four target windows: |
_blank | Load the link into a new blank window. This window is not named. |
_parent | Load the link into the immediate parent of the document the link is in. |
_self | Load the link into the same window the link was clicked in. |
_top | Load the link into the full body of the window. |
Examples
<AREA SHAPE="RECT" COORDS="50, 25, 150, 125" HREF="http://www.sample.com"> <AREA SHAPE="RECT" COORDS="50, 25, 150, 125" NOHREF> <AREA TARGET="viewer" HREF="sample.htm" SHAPE="CIRCLE" COORDS="50, 25, 150, 125">