Open In App

HTML | ismap Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

The HTML ismap attribute is a boolean attribute. When exist, 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:




<!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:
Before:

After clicking on the image:

Supported Browsers: The browser supported by HTML max Attribute are listed below:

  • Google Chrome 1
  • Edge 12
  • Opera 12.1
  • Safari 3
  • Firefox 1

Last Updated : 24 Aug, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads