What is < Video > Tag in HTML5 ?

 What is < Video > Tag in HTML5 ?


The <video> tag is used to embed video content in a document, such as a movie clip or other video streams  and it has several video sources.Now also you can embed your YouTube video content on your website or web pages .

Example:


<html>

<head>

      <title>HTML video Tag</title>

   </head>


   <body>

      <p>Ask your first Question in (tech.thinkforu.org)</p>

      <br />

      

      <video width = "600" height = "300" controls>

         <source src = "/html/techthinkforu.mp4" 

type = "video/mp4">

         This browser doesn't support video tag.

      </video>

   </body>

</html>

Comments