HTML CSS examples for HTML:Video
The HTML5 video element
<!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>