Video Tag in HTML :  This tag used to play the videos.
Attributes of video tag :
  • Height : height of the video.
  • Width : width of the video.
  • Controls : it written play or pass buttons.
  • Loop : play the video continually.
  • Auto play : play the video automatically.
  • Source : it finds the location of the video file.
  • Type : it specify the mime type of video file.
Example :
<video height=“100px” width=“100px” autoplay=“on”>
<source src=“video.mp4” type=“video/mp4”/>
</video>
Example :
video tag example