HTML <video> element
<video src="http://www.youtube.com/watch?v=ancfun2004s"
controls preload></video>
Specific attributes of <video> tag:
Attribute | Description |
autoplay | Start play the video automatically when page loaded |
controls | Show video controls, otherwise the video will not appear on th page |
preload | Preload the video |
src | URL of the video |
loop | play video repeatly |
height | height of the video |
width | width of the video |