A RetroSearch Logo

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

Search Query:

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

HTML | <img> ismap Attribute

HTML | <img> ismap Attribute

Last Updated : 22 Jul, 2022

The HTML <img> 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.

Note: This attribute is permitted only if the <img> element is a child of an <a> element with a proper href attribute.

Syntax: 

<img ismap>

Example: 

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: 

Before clicking on the image:

  

After clicking on the image: 

 

Supported Browsers: The browsers supported by <img> ismap 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