Here is the correct cod to embed HTML5 video in your web page without the top bottom or the round frame border.
Steps:
Convert Video for mp4, webm, ogv and flv formats using free Any Video Converter Software.Before convert the video give you div width and height as video frame size .
Copy and Paste the below code with the exact file path.
This code will work with all major mobile and desktop web browsers.
<p>
<video controls="controls" autoplay="autoplay">
<source src="m.mp4" type="video/mp4" />
<source src="m.webm" type="video/webm" />
<source src="m.ogv" type="video/ogg" />
<object type="m.mp4"></object>
</video>
</p>
No comments:
Post a Comment