Created
October 25, 2012 15:51
-
-
Save cliftoncanady/3953580 to your computer and use it in GitHub Desktop.
HTML: HTML5 Embedded Media
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
<!-- HTML5 Embedded Media --> | |
<video poster="images/preview.png" width="1280" height="720" controls="controls" preload="none"> | |
<source src="media/video.mp4" type="video/mp4"></source> | |
<source src="media/video.webm" type="video/webm"></source> | |
<source src="media/video.ogg" type="video/ogg"></source> | |
</video> | |
<audio controls="controls" preload="none"> | |
<source src="music.ogg" type="audio/ogg"> | |
<source src="music.mp3" type="audio/mpeg"> | |
</audio> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment