Answers for "how to embed mp4 in html"

0

adding mp4 in html

<video width="400" controls>
  <source src="mov_bbb.mp4" type="video/mp4">
  <source src="mov_bbb.ogg" type="video/ogg">
  Your browser does not support HTML video.
</video>

<video width="400" controls>
  <source src="mov_bbb.mp4" type="video/mp4">
 
  Your browser does not support HTML video.
</video>
Posted by: Guest on March-01-2021
8

how to embed videos in html

<iframe src="example.mp4" width="100px" height="100px"></iframe>
Posted by: Guest on May-06-2020

Browse Popular Code Answers by Language