Created
April 10, 2012 08:41
-
-
Save donnywals/2349409 to your computer and use it in GitHub Desktop.
Les 2 front end
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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