Last active
April 27, 2016 16:33
-
-
Save oevans/df9bb6c548fc58529df6a2fe23517680 to your computer and use it in GitHub Desktop.
This file contains 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
<head> | |
<style> | |
html, body { | |
margin: 0; | |
padding: 0; | |
width: 100%; | |
height: 100%; | |
background-color: #000; | |
} | |
</style> | |
</head> | |
<body> | |
<video id="my-video" height="100%" width="100%" | |
poster="//MY_POSTER_IMAGE.JPG"> | |
<source src="//MY_VIDEO.mp4" type='video/mp4'> | |
<source src="//MY_WEBM_VIDEO.webm" type='video/webm'> | |
</video> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment