VOOZH about

URL: https://www.geeksforgeeks.org/html/html-img-referrerpolicy-attribute/

⇱ HTML <img> referrerpolicy Attribute - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

HTML <img> referrerpolicy Attribute

Last Updated : 20 Jul, 2022

The HTML <img> referrerpolicy attribute is used to specify the reference information that will be sent to the server when fetching the image. 

Syntax:

<img referrerpolicy="value"> 

Attribute Values : 

  • no-referrer: It specifies that no reference information will be sent along with a request.
  • no-referrer-when-downgrade: It has a default value. It specifies that refer header will not be sent to origins without HTTPS.
  • origin: It specifies to send the origin of the document as the referrer in all cases.
  • origin-when-cross-origin: It sends the origin, path, and query string when performing a same-origin request, but only send the origin of the document for other cases.
  • unsafe-url: It sends origin. path and query string but not include fragment, password and username.

Example: Below code illustrates the use of <img> referrer policy attribute. 

Output:

👁 Image

Supported Browsers:

  • Google Chrome 51.0
  • Edge 79.0
  • Internet Explorer Not Supported
  • Firefox 50.0
  • Safari 14.0
  • Opera 38.0
Comment
Article Tags: