Image maps are used in combination with <img> element and allow users to click on a specified region of an image and execute certain action with it.

The image maps can be a client-side image map or server-side image map.

The area element is a child element to the <map> (image map) element and it specifies the shape and coordinates of desired region within an image.

Coordinates depend on the shape of the chosen region and are relative to the top-left corner of the object.

The image maps are very popular with online maps. For instance a geographical map of U.S.A. that has states divided as image map regions which lets visitors follow the links by clicking on a particular state.

Area is an empty element, therefore the closing tag is forbidden.

Syntax:

<map name=""><area shape="" coords="" /></map>

Attributes:

Example

HTML image map elements:

 

›› go to examples ››