Open In App

HTML <area> referrerpolicy Attribute

The HTML <area> referrerpolicy Attribute is used to specify the reference information on the client side that will be sent to the server when fetching out the result. 

Syntax:



<area referrerpolicy="value">

Attribute Values:

Example: 






<!DOCTYPE html>
<html>
 
<body>
    <h2>
        GeeksForGeeks
    </h2>
 
    <h2>
        HTML area referrerpolicy Attribute
    </h2>
     
    <img src=
        alt="" width="300" height="119"
        class="aligncenter size-medium wp-image-910965"
        usemap="#shapemap" />
 
    <map name="shapemap">
        <!-- area tag contained image. -->
        <area shape="poly"
            coords="59,31,28,83,91,83"
            href=
            alt="Triangle" referrerpolicy="same-origin">
         
        <area shape="circle"
            coords="155,56,26"
            href=
            alt="Circle" referrerpolicy="same-origin">
         
        <area shape="rect"
            coords="224,30,276,82"
            href=
            alt="Square" referrerpolicy="same-origin">
    </map>
</body>
 
</html>

Output:

Supported Browsers:


Article Tags :