Videos

Videos can captivate and inform.

<video></video>

Just like images, videos are embedded (or linked) into a web page.

<video>
<source src="file.mp4"
type="video/mp4">
</video>

You can add text between the <video> tags. The text will only be displayed in browsers that don’t support the video element.

<video> 
    <source src="videofile.mp4" type="video/mp4"> 
    <source src="videofile.webm" type="video/webm"> 
    Video not supported     
</video>