Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML | <video> controls Attribute

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The HTML <video> controls Attribute is used to specify the control to play video. It is the Boolean value. This attribute is new in HTML5. 

The video control should include:

  • Play
  • Pause
  • Volume
  • Full-screen Mode
  • Seeking
  • Captions/Subtitles(if available)
  • Track(if available)

Syntax:

<video controls>

Example: 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>HTML video controls Attribute</title>
</head>
 
<body>
    <center>
        <h1 style="color:green;">GeeksforGeeks</h1>
 
        <h3>HTML video controls Attribute</h3>
 
        <video width="400" height="200" controls>
            <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: The browser supported by HTML <video> controls Attribute are listed below:

  • 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
Last Updated : 15 Jul, 2022
Like Article
Save Article
Similar Reads
Related Tutorials