Video Tag in HTML
HTML5 provided the facility to use video tags to play videos on the HTML web page. Nowadays almost all modern web browsers support video tags. It offers to set custom height and width with the help of the controls attribute that offers video controls like sound, plays, stops, etc...
Video Tag Example
<video width="500" height="250" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/Ogg">
</video>