Skip to content
Related Articles
Open in App
Not now

Related Articles

HTML | <video> autoplay Attribute

Improve Article
Save Article
  • Last Updated : 15 Jul, 2022
Improve Article
Save Article

The HTML <video> autoplay attribute is used to specify that the video will play automatically after loading the web page. It is the Boolean value, this attribute is new in HTML5. 

Syntax:

<video autoplay>

Example: 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>HTML video autoplay Attribute</title>
</head>
 
<body>
    <center>
        <h1 style="color:green;">GeeksforGeeks</h1>
 
        <h3>HTML video autoplay Attribute</h3>
 
        <video width="400" height="200" controls autoplay>
            <source src=
                    type="video/mp4">
            <source src=
                    type="video/ogg">
        </video>
    </center>
</body>
 
</html>

Output:

 

Note: Always specify the width and the height of the video else web page will be confused that how much space that video will be required due to that reason web page become slow down.

Supported Browsers:

  • Google Chrome 3.0 and above
  • Edge 12.0 and above
  • Internet Explorer 9.0 and above
  • Firefox 3.5 and above
  • Safari 3.1 and above
  • Opera 10.5 and above
My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!