Skip to content

Instantly share code, notes, and snippets.

@dyladan
Created April 23, 2013 10:15
Show Gist options
  • Save dyladan/5442401 to your computer and use it in GitHub Desktop.
Save dyladan/5442401 to your computer and use it in GitHub Desktop.
simple html5 video tag
<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