+ 2
Am I create video by using html?
I want to create video by using html?
2 Antworten
+ 2
you can't "create" video with html. you can "display" your video in a web browser with html.
+ 2
Hey Vikram, you will need a <video> tag and a <source src> to get the link of the video you would like to display. Check this example out from w3schools.com:
https://www.w3schools.com/html/html5_video.asp
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>