HTML Compiler Online
Javascript Online Compiler
index.html
Change Theme
Compress code
Format code
Download Code
Clear Code
Copy Code!
RunĀ
ctrl+s or click
Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>HTML - HTML Videos autoplay</title> </head> <body> <h1>Use autoplay attribute to play videos automatically</h1> <p>Video without autoplay:</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>Video with autoplay:</p> <video height="225" width="400" controls autoplay> <source src="assets/html/night-sky.mp4" type="video/mp4"> Your browser doesn't support video element. </video> </body> </html>
RunĀ