+ 2

Am I create video by using html?

I want to create video by using html?

9th Jan 2018, 7:32 AM
Vikram Kumar
Vikram Kumar - avatar
2 Antworten
+ 2
you can't "create" video with html. you can "display" your video in a web browser with html.
9th Jan 2018, 7:59 AM
storm
storm - avatar
+ 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>
12th Jan 2018, 10:59 PM
Austin Timmerman
Austin Timmerman - avatar