Open In App

HTML <img> crossorigin Attribute

The HTML crossorigin Attribute in is used in <img> element that supports a CORS request when we tried to fetch out the .png or .jpg files from the third party server or from other domain. 

Syntax



<img crossorigin="anonymous | use-credentials">

Attribute Values:

Example: Below code illustrates the use of crossorigin attribute in the <img> element. It is set to “anonymous” value which retrieved the .png or .jpeg files without passing credentials information. 



  




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML img crossorigin Attribute
    </title>
</head>
 
<body>
  <center>
    <h1>GeeksforGeeks</h1>
 
    <h2>HTML <img> crossorigin Attribute</h2>
 
    <img src=
        alt="GeeksforGeeks logo" crossorigin="anonymous">
</body>
 
</html>

Output: 

Supported Browsers:

Article Tags :