HTML5 Video Sample/Demo

Source code:

<!doctype html>
<html>
<head>
<title>HTML5 Video Sample</title>
</head>
<body>
<video width="720" height="406" controls autoplay>
<source src="720x406.mp4" type="video/mp4">
<source src="720x406.webm" type="video/webm">
<source src="720x406.ogv" type="video/ogg">
<p>Your browser does not support the video element.</p>
</video>
</body>
</html>