<area>

EmbeddedSelf-closing

Defines a clickable area within an image map, each linking to a different URL.

Common Attributes

shapecoordshrefalttarget

Example

<area shape="circle" coords="90,58,3" href="/coffee" alt="Coffee">

About the <area> Element

The <area> HTML element belongs to the Embedded category of HTML elements. Defines a clickable area within an image map, each linking to a different URL. Understanding when and how to use this element is essential for building well-structured, accessible, and SEO-friendly web pages.

As a void (self-closing) element, <area> does not have a closing tag. It is written as <area> or <area /> in XHTML syntax. This element is part of the current HTML Living Standard and is supported in all modern browsers including Chrome, Firefox, Safari, and Edge.

Proper use of semantic HTML elements like <area> improves document structure, helps screen readers interpret content correctly, and provides signals to search engines about the purpose of different sections of your page. This leads to better accessibility scores, improved SEO rankings, and more maintainable code.

Related Elements