Open In App

HTML <video> crossorigin Attribute

The HTML crossorigin attribute is used in the <video> element that supports a CORS request when we tried to fetch out the video files from the third-party servers or from another domain.

Syntax:



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

Attribute Values:

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






<!DOCTYPE html>
<html>
 
<body>
    <center>
        <h1 style="color:green;">
            GeeksforGeeks
        </h1>
 
        <h3>HTML <video>
            crossorigin Attribute</h3>
 
        <video crossorigin="anonymous"
            width="400" height="200" controls
            src=
            Browser not supported
        </video>
    </center>
</body>
 
</html>

Output:

Supported Browsers:

Article Tags :