Type Here to Get Search Results !

HTML



1)  HTML <video> तत्व का उपयोग वेब पेज पर वीडियो दिखाने के लिए किया जाता है।


<!DOCTYPE html>

<html>

<body>

<video width="320" height="240" controls>

  <source src="movie.mp4" type="video/mp4">

  Your browser does not support the video tag.

</video>


</body>

</html>

2)  HTML <video> तत्व का उपयोग वेब पेज पर वीडियो दिखाने के लिए किया जाता है।



<!DOCTYPE html>
<html>
<body>

<video width="320" height="240" autoplay muted>
  <source src="movie.mp4" type="video/mp4">
  <source src="movie.ogg" type="video/ogg">
  Your browser does not support the video tag.
</video>

</body>
</html>
Tags

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.