HTML
tags used with image maps:
An example:
<IMG SRC="kansas.gif" USEMAP="#Kansas"
ALT="Kansas" WIDTH=385 HEIGHT=170 BORDER=0>
<MAP NAME="Kansas">
<AREA HREF="nw.html"
SHAPE="RECT" COORDS="0,0,192,85"
ALT="North West">
| TAG |
ATTRIBUTE |
USE |
<MAP> |
|
Define a map for a
client-side image map. |
| |
NAME |
An attribute of the
<MAP> tag used to define the map's name. |
| |
USEMAP |
An attribute of the
<MAP> tag used to associate an image with a client-side image map specified by
<MAP NAME="mapname"> |
<AREA> |
|
The individual
regions within a <MAP> element. |
| |
SHAPE |
An attribute of the
<AREA> tag indicating the type of region. Possible values are RECT, POLY and
CIRCLE. |
| |
COORDS |
An attribute of the
<AREA> tag indicating the points bounding the region. |
| |
HREF |
An attribute of the
<AREA> tag indicating the URL of the region. |
|