|
<IMG SRC="images/imagemap.gif USEMAP="#map" ALT="Illustration of an Image Map">
<MAP NAME="map">
<AREA
SHAPE="rect"
HREF="index.htm"
COORDS="53,85,163,180"
onMouseOver="window.status='You Are On The
Rectangle'; return true;"
onMouseOut="window.status=''
"
TITLE="You Are On The Rectangle"
ALT="You Are On The Rectangle"
>
<AREA
SHAPE="circle"
HREF="index.htm"
COORDS="272,133,41"
onMouseOver="window.status='You Are On The Circle';
return true;"
onMouseOut="window.status=''
"
TITLE="You Are On The Circle"
ALT="You Are On The Circle"
>
<AREA
SHAPE="polygon"
HREF="index.htm"
COORDS="366,111,418,87,473,139,473,172,400,172"
onMouseOver="window.status='You Are On The Polygon';
return true;"
onMouseOut="window.status=''
"
TITLE="You Are On The Polygon"
ALT="You Are On The Polygon"
>
</MAP>
As you move the mouse over the Rectangle (COORDS="53,85,163,180") you will get a message in the Status Line. This will also be the case when you move the mouse over the Circle or the Polygon.
TITLE="You Are On The Polygon" is used to display the tooltip message when the cursor is over the polygon.
SideBar - Whenever possible you should include an ALT tag
with your Images. |