Client-Side Image Maps

Go to the Navigation pageHelpExitBackNext

Placing the Image With USEMAP
To place the actual image map on the page, you use an ordinary <IMG> tag, and add a USEMAP attribute: <IMG SRC="rushmore.gif" USEMAP="#rushmore">

Use the name you put in the <MAP> tag (and don't forget the # symbol). Here, the page's creator included the WIDTH and HEIGHT attributes as well, as you should do for any image on a Web page.

 
...
<IMG SRC="rushmore.gif" WIDTH=400 HEIGHT=263 USEMAP="#rushmore">
...