Video Example

HTML5 offers a straight forward way to embed a video on a web page. You can change the size of the video with ease.

<video width="410" height="230" controls>
   	<source src="petmovie.mp4" type="video/mp4">
   	<source src="petmovie.ogg" type="video/ogg">
	The video tag is not supported by your browser.
</video>