HTML <map> tag

HTML <map> tag : Definition


• The <map> tag is generally used to describe an image-map inside active areas

• The active area contain an image and are clickable, if you click over the image it will redirect you to get some more information about it.

• The clickable areas in the image map are specified using the <area> tag, inside the <map> element.

• The <map> element contains a number of <area> elements, that specifies the clickable <areas> in the image map.


Html <map> tag exampleh

<!DOCTYPE html>
<html>
<body>	
	<map rel="stylesheet" type="text/css" href="styles.css">
</body>
</html>

Output :

Click on the the picture to get the more information in detail about it.

block html-book html-quiz html-snippets