A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/html/html-ismap-attribute/ below:

HTML ismap Attribute - GeeksforGeeks

HTML ismap Attribute

Last Updated : 12 Jul, 2025

The HTML ismap attribute is a boolean attribute. When exists, it specifies that the image is a component element of a server-side image-map (an image-map is a picture with clickable areas). When clicking on a server-side image-map, the press coordinates square measure sent to the server as a URL query string

Applies to:

Syntax:

<img ismap>

Example: In this example, we display a "GeeksforGeeks" heading with an image. The image uses the ismap attribute, enabling clickable regions when used with a server-side image map in an <a> tag.

HTML
<!DOCTYPE html>
<html>

<body>
    <center>
        <h1 style="color:green">
            GeeksforGeeks
        </h1>
        <h2>HTML ismap Attribute</h2>
        <a href="#">
            <img src="img3.png" alt="GFG.com" width="400" height="150" ismap>
        </a>
    </center>
</body>

</html>

Output:

Supported Browsers:

The browser supported by HTML max Attribute are listed below:



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4