Adding video to a webpage

by danielkwood

HTML

<html>
  <head>
    <title>Adding video to a webpage</title>
  </head>
  <body>
    <video width="1080" height="720" controls autoplay loop>
    <source src="your_video_file.mp4" type="video/mp4"/>
      Your browser doesn't support the HTML video tag. Consider upgrading to a newer browser.
    </video>
  </body>
</html>