+ 2
How can I get my video file into my code? I tried using the source tag but nothing
Video control autoplay
2 odpowiedzi
+ 1
try somthing like this 🤷♂️
<video width="300" height="200" controls autoplay>
<source src="https://media.w3.org/2010/05/sintel/trailer.mp4" type="video/mp4">
</video>
+ 1
Thanks ou-sama