Video is new tag added in HTML 5. The controls attribute
adds video controls, like play, pause, and volume. It is a good idea to always
include width and height attributes. If height and width are not set, the page
might flicker while the video loads and video will in its original resolution
and if resolution is high or HD it will disturb all other element position of
your page.
Syntax :
<video width="XX" height="XX" controls>
<source src="XX" type="video/mp4">
<source src="XX" type="video/ogg">
Your browser does not support the video tag.
</video>
<source src="XX" type="video/mp4">
<source src="XX" type="video/ogg">
Your browser does not support the video tag.
</video>