Image Maps:
Description:
Image maps allow you to have a single image with 'hot spots' that link to different pages. What do you need to do this? You need an Image Map Editor (You can find one here: Other-World's Authoring Tools) to create a .map file and the appropriate code for image maps.
The Required Code:
<a href=".map file"><img src="your image.gif" ISMAP></a>
Examples:
This is example code for a .map file. (otherworld.map) file:rect http://www.other-world.com/page1.htm 9,143 194,163
rect http://www.other-world.com/page2.htm 8,18 113,37
rect http://www.other-world.com/page3.htm 153,3 198,118
rect http://www.other-world.com/page4.htm 85,44 151,88
The code to make this an image map would look as follows:<a href="otherworld.map"><img src="someimage.gif" ISMAP></a>
Close