The HTML5 video element - HTML CSS HTML

HTML CSS examples for HTML:Video

Description

The HTML5 video element

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <meta charset="UTF-8"> 
  <title>The HTML5 video element</title> 
 </head> <!--from   ww w .jav  a 2 s  .  c  o  m-->
 <body> 
  <video controls="controls" src="../your.mp4">
    Your browser does not support the HTML5 Video element. 
  </video>   
 </body>
</html>

Related Tutorials