video.html 315 B

1234567891011
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h1>HTML5 Video Example</h1>
  5. <video controls>
  6. <source src="small.ogv" type="video/ogg"/>
  7. <source src="small.mp4" type="video/mp4"/>
  8. </video>
  9. <p>Videos taken from <a href="http://techslides.com/sample-webm-ogg-and-mp4-video-files-for-html5/">TechSlides</a></p>
  10. </body>
  11. </html>