<AREA> Tag Attributes
Each <AREA> tag in this code has three attributes:
| SHAPE="RECT" indicates that the region is rectangular. You'll see how to create regions with other shapes later in this unit. |
| COORDS="40,10,130,130" gives the top-left and bottom-right corner coordinates for the rectangular region. |
| HREF="george.htm" specifies the page that clicking on the region will link to. You can use any address or filename that you would use in an ordinary
<A HREF> link tag. |
After the <AREA> tags, you are finished defining the image map, so you insert a closing </MAP> tag.
|