Open In App

HTML | <area> coords Attribute

The <area> coords attribute is used to specify the coordinate of an area in an image-map. It is used with shape attribute to specify the size, shape, and placement of an area. (0, 0) is the coordinate of the top-left corner.
Syntax: 
 

<area coords="value">

Attribute Values: 
 



Example: 
 




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML area coords Attribute
    </title>
</head>
 
<body style="text-align:center;">
    <img src=
        alt="alt_attribute" width="300" height="119"
        class="aligncenter" usemap="#shapemap" />
 
    <map name="shapemap">
         
        <!-- area tag contained image. -->
        <area shape="poly" coords="59, 31, 28, 83, 91, 83" href=
        alt="Triangle">
         
        <area shape="circle" coords="155, 56, 26" href=
        alt="Circle">
         
        <area shape="rect" coords="224, 30, 276, 82" href=
        alt="Square">
    </map>
</body>
 
</html>                   

Output: 
 



Supported Browsers: The browser supported by <area> coords attribute are listed below: 
 

 


Article Tags :