0
How do you use the video attribute especially when the video you want to use is stored on your laptop using notepad
Html
2 Answers
+ 2
When using notepad, try:
<video src="video.mp4" control>
</video>
Or
<video controls autoplay>
<source src =" video.mp4" type="video/mp4"/>
</video>
Where "video" is the video name and ".mp4" is its extension.
0
Senkuule Raymond
HTML5 video element? add HTML in the thread tags to improve context clarity please.
Also add a bit more info on what problem you are facing with the video, for example; path of HTML and video files.
It would be great if you can share a link to your code for inspection. You can share your code link by following below guide đ
https://www.sololearn.com/post/75089/?ref=app