HTML - shape Attribute



HTML shape attribute is used to specify an area's shape. It is used with the cords attribute to specify an area's size, shape, and placement.

Syntax

<area shape=" rect | circle " cords=" ">

Applies on

Below-listed element allows the use of the HTML shape attribute.

Element Description
<area> HTML <area> tag specifies the areas of the image, mapping that can be clicked on or are active areas that are linked to by hyperlinks.

Examples of HTML shape attribute

Below examples will illustrate the HTML shape attribute, where and how we should use this attribute!

Clickable image map with rectangular shape

On running the below code, the output window will display the clickable rectangle on the webpage. when the user clicks on the rectangle, it further displays another rectangle.

<!DOCTYPE html>
<html>

<head>
    <title> HTML shape Attribute in area tag</title>
</head>

<body>
    <h2>HTML shape Attribute in area tag</h2>
    <p>Click on the below rectangle to see another rectangle.</p>
    <img src=
"https://i.pinimg.com/originals/98/4a/76/984a7602f2200e18e6a8657722c09385.png" 
         width="300" 
         height="119" 
         usemap="#shapemap" />
    <map name="shapemap">
    <area shape="rect" 
            coords="100, 20, 250, 80" 
            href=
"https://encrypted-tbn0.gstatic.com/images?q=tb:ANd9GcRttgqluhjReBW6EbWI5sdFH8g3TdRa5wzJPrnV_SxAo2HZeema27VZzWtoOYRHYtsty68&usqp=CAU" 
            alt="Square">
    </map>
</body>

</html>

Clickable image map with circular shape

On running the below code, the output window will display the clickable circle on the webpage. when the user clicks on the circle, it further displays another circle.

<!DOCTYPE html>
<html>

<head>
    <title> HTML shape Attribute in area tag</title>
</head>

<body>
    <h2>HTML shape Attribute in area tag</h2>
    <p>Click on the circle below to see another circle.</p>
    <img src=
"https://t4.ftcdn.net/jpg/05/13/51/83/360_F_513518338_WdNSvv9IcRuMX8e5urFsq4UISKivj2vk.jpg" 
         width="200" 
         height="200" 
         usemap="#shapemap" />
    <map name="shapemap">
    <area shape="circle" coords="100, 100, 25" 
            href=
"https://i.pinimg.com/originals/fe/74/02/fe74026279d49724edba9a414bf48240.jpg" 
            alt="Square">
    </map>
</body>

</html>

Supported Browsers

Attribute Chrome Edge Firefox Safari Opera
shape Yes Yes Yes Yes Yes
html_attributes_reference.htm
Advertisements