Created
January 29, 2014 23:08
-
-
Save amusarra/8699210 to your computer and use it in GitHub Desktop.
Simple test for video support in email using HTML5
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> | |
<meta charset="UTF-8" /> | |
<title>Video For Everybody Test Page</title> | |
<style type="text/css"> | |
body {width: 640px; margin: 0 auto 20px; | |
font: 11px "Helvetica Neue", Arial, sans-serif; color: #3b3d3c;} | |
</style> | |
</head> | |
<body> | |
<p>Simple test for video support in email using HTML5</p> | |
<video width="640" height="360" poster="http://www.campaignmonitor.com/uploads/testing/html5video/poster.jpg" controls="controls"> | |
<source src="http://www.campaignmonitor.com/uploads/testing/html5video/big_buck_bunny.mp4" type="video/mp4" /> | |
<p><a href="http://www.campaignmonitor.com/"><img src="http://www.campaignmonitor.com/uploads/testing/html5video/poster.jpg" width="640" height="360" border="0" alt="Poster"></a></p> | |
</video> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment