PDA

View Full Version : Image map question


AshleyQuick
08-19-2002, 07:17 PM
I have an image map with three shapes/coords. Is there a way to specify a url for the remainder of the image? Thanks

Ash

webmarkart
08-19-2002, 09:09 PM
Try this...

<map name="southold_mapquest">
<area shape="rect" alt="test" coords="138,93,178,133" href="sdfsdf.html">
<area shape="rect" alt="test2" coords="176,6,296,92" href="dfg.html">
<area shape="default" href="whatever.html">
</map>

AshleyQuick
08-21-2002, 01:47 PM
I'll give it a shot, thanks.