Online HTML Editor
Javascript Online Compiler
index.html
Change Theme
Compress code
Uncompress code
Download Code
Clear Code
Copy Code!
RunĀ
Click to run or ctrl+s
Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>HTML - HTML Videos loop</title> </head> <body> <h1>Use loop attribute to repeat video</h1> <p>HTML video without loop:</p> <video height="225" width="400" controls> <source src="./assets/html/night-sky.mp4" type="video/mp4"> Your browser doesn't support video element. </video> <p>HTML video with loop:</p> <video height="225" width="400" controls loop> <source src="./assets/html/night-sky.mp4" type="video/mp4"> Your browser doesn't support video element. </video> </body> </html>
RunĀ