In this article, you will learn How to Play a video on web Browser.<html> <head> <title>Video</title> </head> <body> <video width="320" height="240" controls> <source src="movie.mp4" type="video/mp4"> <source src="movie.ogg" type="video/ogg"> </video> </body> </html>In the above code <video> tag is used …
In this article, you will learn How to Play a video on web Browser.
<html> <head> <title>Video</title> </head> <body> <video width="320" height="240" controls> <source src="movie.mp4" type="video/mp4"> <source src="movie.ogg" type="video/ogg"> </video> </body> </html>
In the above code <video> tag is used …