" /> " /> "/>

Adding video to a webpage using html

196 Views Asked by At

I tried to add a video to a webpage. But I think there is an error. can anyone help me to solve this error

<Video width="1000" height="1050" autoplay>
<source src="file:///F:/Yohani/Works/Audio%20and%20video%20editing/Programming.mp4" type="video/filetype">
</Video>
1

There are 1 best solutions below

0
bachar97 On

I would suggest adding the video in the same directory as your file. Then all you have to do is add it's name in the src and change type to "video/mp4"

Your code should look like this:

<Video width="1000" height="1050" autoplay>
<source src="Programming.mp4" type="video/mp4">
</Video>