The <area> tag is used as a child of a <map> tag. An image map is an image with clickable areas. The area tag is define an area inside an image-map.
Example of Code:
<img src ="http://schools.inimisttech.com/upload/blogs/15501493511549346156product.png
" alt="My image" usemap ="#my-map">
<map name="my-map">
<area
shape="rect"
coords="50,50,100,100"
href="/box/"
alt="My rectangle box">
</map>
Output:

