A Video File can be inserted on an HTML page in two ways. By using <embed /> Tag in the first way, this Tag does not require Ending / Finishing Tag and it keeps working.
<video> Tag is used to play Video File in HTML. With the introduction of HTML5, Video Tag spread very quickly by modern Browsers.
If after reading all this you still do not agree to make your own Player using HTML5 Video Tag, then you can use simple but powerful Generator to create Video Tag for Player.
Video Tag is used to add a video to an HTML Page. Currently, Video Tag supports three types of Video Files in HTML5.
- mp4 – MIME-type video/mp4
- webm – MIME-type video/webm
- ogg – MIME-type video/ogg
<!DOCTYPE HTML> <html> <body> <video width="300" controls> <source src="mov_file.mp4" type="video/mp4" /> <source src="mov_file.ogg" type="video/ogg" /> </video> </body> </html>