HTML Video

HTML VIDEO: HTML5 has introduced the <video> tag to embed video into the webpage directly without using the plug-ins. 

  Syntax:
<video attributes >  
  <source src="address" type="video/mp4">  
  Your browser does not support the video tag.  
</video>
<video width="320" height="240" controls>  
  <source src="mountain.mp4" type="video/mp4">  
  Your browser does not support the video tag.  
</video>
Output: