< All the HTML Tags >

<map></map>

Video Coming Soon...

  • map

    Tag Type

    block

    Tag Category

    media

    Defines a client-side image map

    Viewed

    1

    Examples

    1

Definition:

The HTML <map> tag is used to define a client-side image map, enabling clickable areas on images that can link to different URLs.

It is associated with an <img> tag via the usemap attribute and contains one or more <area> elements that define the clickable regions. This functionality enhances interactivity and navigation on a webpage.

Understanding the `<map>` tag is essential for creating interactive images and improving user engagement.

Attributes:

name, Global attributes (e.g., class, id, style)

Accessibility:

Coming Soon…

Default map Example:

Using the <map> tag to define an image map.
<map name="map"><area shape="rect" coords="34,40,270,350" href="link.html"></map>

Default map Result:


Coming Soon…

Community Examples:

Coming Soon…
Coming Soon…