Created
April 23, 2013 10:15
-
-
Save dyladan/5442401 to your computer and use it in GitHub Desktop.
simple html5 video tag
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
<video> | |
<source src="movie.webm" type='video/webm; codecs="vp8, vorbis"' /> | |
<source src="movie.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' /> | |
<source src="movie.ogv" type='video/ogg; codecs="theora, vorbis"' /> | |
Video tag not supported. Download the video <a href="movie.webm">here</a>. | |
</video> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment