Aternative sources for video element




Aternative sources for video element examples

<!DOCTYPE html>
<html>
   <head>
      <title>HTML5 video element examples</title>
   </head>
   <body>
      <video controls="controls">
         <source src="video/shuttle.mp4" type="video/mp4">
         <source src="video/shuttle.ogv" type="video/ogg">
         Your browser does not support the HTML5 Video element.
      </video>
   </body>
</html>

Output