how to embed mp4 html code example
Example 1: how to embed videos in html
<iframe src="example.mp4" width="100px" height="100px"></iframe>
Example 2: 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>