Week 5:

Video



The video HTML tag is the contemporary technique used to embed a video file into a webpage. You can embed MP4, WebM, and OFF video files. MP4 is currently the most commonly used video container format.



<video width="100%" autoplay controls loop muted>
    <source src="shia.mp4" type="video/mp4" />
    Your browser does not support the video tag.
</video>

Resources