The HTML <video> loop Attribute is used to restart the video again and again after finishing it. It contains the Boolean value. This tag is new in HTML5.
Syntax:
<video loop>
Example:
html
<!DOCTYPE html>
< html >
< head >
< title >HTML video loop Attribute</ title >
</ head >
< body >
< center >
< h1 style="color:green;">GeeksforGeeks</ h1 >
< h3 >HTML video loop Attribute</ h3 >
< video width="400" height="200" controls loop>
< source src=
type="video/mp4">
< source src=
type="video/ogg">
</ video >
</ center >
</ body >
</ html >
</ 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> loop Attribute are listed below:
- Google Chrome 3.0 and above
- Edge 12.0 and above
- Internet Explorer 9.0 and above
- Firefox 11.0 and above
- Safari 3.1 and above
- Opera 10.5 and above
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
15 Jul, 2022
Like Article
Save Article