Answers for "how to include mp4 file in a html file? give example"

3

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

Code answers related to "how to include mp4 file in a html file? give example"

Browse Popular Code Answers by Language