How to Create an Image Map
While many people think HTML is static and boring, there are actually very cool HTML codes that let you do unique and fun things. For example, the following code is an image map that lets you create clickable areas of any image.
<MAP name="image"> <AREA shape="rect" coords="1,1, 10,20" href="link1.html"> <AREA shape="circle" coords="50,50, 10" href="link2.html"> <AREA shape="poly" coords="20,1, 40,1,30,20" href="link3.html"> </MAP> <IMG src="image.jpg" usemap="#image">