<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>HTML video Element - Autoplay and Muted</title> </head> <body> <video width="400" height="300" controls="controls" autoplay muted> <source src="https://archive.org/download/ElephantsDream/ed_1024_512kb.mp4" type="video/mp4"> Sorry, your browser doesn't support embedded videos! </video> <p>Video courtesy of <a href="https://archive.org" target="_blank">archive.org</a>.</p> </body> </html>