Skip to content

Instantly share code, notes, and snippets.

@devluis
Created August 19, 2013 18:41
Show Gist options
  • Save devluis/6272558 to your computer and use it in GitHub Desktop.
Save devluis/6272558 to your computer and use it in GitHub Desktop.
Video player HTML 5 with support for iOS devices
<!DOCTYPE html>
<head>
<meta charset=”utf-8″>
<meta name=”apple-mobile-web-app-capable” content=”yes” />
<title>My Video</title>
<link rel=”apple-touch-icon” href=”icon.png” />
<style>
body {margin:0;}
</style>
</head>
<body>
<video width=”1024″ height=”750″ controls=”true”>
<source src=”videos/video-name.mov” /><!– WebKit video –>
</video>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment