HTML area tag
HTML <area> element represents a specific area on an image to make a linked area. We have to specify the size on an image to make a linked area.
<img src="files/three images.jpg" usemap="#shapes" alt="shape of a circle" />
<map name="shapes">
<area href="files/circ.html" shape="circle" coords="196,89,33" />
</map>
</>
Tag Uses
Specific uses of <area> tagIt is used to specify the area on a map.
Tag omission
area element is a self-closing tag (<area />) i.e. there is no end tag.
Global Attributes
All attributes are applicable on the area element.
Next Previous
Was this article helpful?