×

Html & Html5

The World's best Software Development Study Portal

HTML map tag


This <map> tag is normally use to defines the images with clickable areas with the help of <area> tag.
And here by image map which consist the image with clickable areas , can click on image and redirect to any particular destination.

Let's understand this by the following example:


<p> <strong>Example of map tag. </strong> </p>
<img src="image/himalayas.png" usemap="#manish">
<map id="#manish">
<area shape="rect" coords="953,905,14,0" href="http://ittrainingclasse/">
</map>

Output:


Example of map tag.



As soon as you click on this you will be redirecting to the homepage of this website.