Open In App

HTML <link> crossorigin Attribute

The HTML crossorigin Attribute in <link> element is used to specifying that supports the HTTP CORS request when fetching or loading the stylesheet or icon files from the third-party server.

Syntax:



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

Attribute Values:

Example: Below code demonstrates the use of crossorigin Attribute with the <link> element. 






<!DOCTYPE html>
<html>
 
<head>
    <link id="linkid" rel="stylesheet"
        type="text/css" href="styles.css"
        sizes="16*16" hreflang="en-us"
        crossorigin="anonymous">
</head>
 
<body style="text-align:center;">
    <h1>GeeksForGeeks</h1>
    <h2>HTML <link>
        crossorigin Attribute
    </h2>
</body>
 
</html>

Output:

Supported Browsers:

Article Tags :