Open In App

HTML | <video> preload Attribute

The HTML audio preload Attribute is used to specify the way the author thinks the video should be loaded when the page loads. The video preload attribute allows the author to portray to the browser about the way the user experience of a website should be implemented. 

Syntax:



<video preload="auto | metadata | none"> 

Attribute Values:

Example: 






<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML Video Preload Attribute
    </title>
</head>
 
<body style="text-align:center">
 
    <h1 style="color:green">
    GeeksforGeeks
</h1>
    <h2 style="font-family: Impact">
HTML  Video Preload Attribute
</h2>
    <br>
 
    <video id="Test_Video"
           width="360"
           height="240"
           controls
           preload="none">
        <source src="samplevideo.mp4"
                type="video/mp4">
    </video>
 
</body>
 
</html>

Output:

  

Supported Browsers: The browsers supported by HTML video preload Attribute are listed below:

Article Tags :