The <area> tag defines an area inside an image map.
Example
<!Doctype Html>
<html>
<head>
<title>areaTag</title>
</head>
<body>
<img src="image.jpg" alt="image" usemap="#imagemap" width="500" height="500">
<map name="imagemap">
<area shape="rect" coords="44,54,275,370" alt="About Us" href="about.htm">
<area shape="circle" coords="280,170,335,257" alt="Contact Us" href="contact.htm">
</map>
</body>
</html>
Copyright ©2022 coderraj.com. All Rights Reserved.