Skip to content

Instantly share code, notes, and snippets.

@donnywals
Created April 10, 2012 08:41
Show Gist options
  • Save donnywals/2349409 to your computer and use it in GitHub Desktop.
Save donnywals/2349409 to your computer and use it in GitHub Desktop.
Les 2 front end
<!DOCTYPE html>
<html>
<head>
<title>Video in html5</title>
<meta charset="UTF-8">
</head>
<body>
<video controls>
<source src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4" type="video/mp4"></source>
<source src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.webm" type="video/webm"></source>
<source src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.ogv" type="video/ogv"></source>
<poster src="http://sandbox.thewikies.com/vfe-generator/images/big-buck-bunny_poster.jpg"></poster>
<track src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.webvtt"></track>
<a href="http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4">Download deze video</a>
</video>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment