<area>

Draft

Definition

The <area> element is used to define an area on a page. This could be a rectangle, circle, or polygon. You can use it to create maps, for instance.

<map name="map">
  <area
    shape="rect"
    coords="0, 0, 82, 126"
    href="https://example.com"
    alt="Example 1"
  />

  <area
    shape="circle"
    coords="90, 58, 3"
    href="https://example.com"
    alt="Example 2"
  />

  <area
    shape="poly"
    coords="48, 48, 22, 22, 22, 74, 48, 98, 74, 74, 74, 22"
    href="https://example.com"
    alt="Example 3"
  />
</map>