Create image map
Many times I have seen sometimes in some websites there are links created on image itself
today i learn it...so I would like to share it with you Guys
An image map is a way of defining "hot spot" links within an image on a Web page. This means that, rather than having the whole image behave as one link, you can have lots of different links within the one image.
Linking to an image map: The Usemap attribute
How do you turn an image into an image map? Well, to associate an image map with an image, simply add the usemap attribute to the img tag for the image. In the above example, the image map is called "shapes", so our img tag looks like this:
[img]abc.jpg[/img]Creating an image map: The map tag
The other half of the image map is the map definition itself. In this definition, you tell the browser where the hot spots are in the image, and what the hot spots need to link to.
The map is defined using the <map></map> tag. In our example above, the map tag looks like this:
<map name="map-name"> <area shape="[I]area shape[/I]" coords="[I]area coordinates[/I]" href="[I]area hyperlink[/I]" [I]or[/I] nohref="nohref" target="[I]hyperlink target[/I]" title="[I]area title[/I]" alt="[I]alternate text[/I]"/> </map>