Created
January 11, 2016 15:58
-
-
Save A-Zak/6d1fddd9622693706bc1 to your computer and use it in GitHub Desktop.
auto playing video tag in a loop
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
<!DOCTYPE html> | |
<html> | |
<body> | |
<video width="320" height="240" controls autoplay loop> | |
<source src="movie.mp4" type="video/mp4"> | |
Your browser does not support the video tag. | |
</video> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment