+ 4
How to use video element in HTML???
3 ответов
+ 1
The <video> tag is used to embed video content in a document, such as a movie clip or other video streams. The <video> tag contains one or more <source> tags with different video sources. The browser will choose the first source it supports.
<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>
More info:-
https://googleweblight.com/sp?u=https://www.w3schools.com/tags/tag_video.asp&grqid=1eSGQ57E&hl=en-IN
0
https://code.sololearn.com/WID5tz92EOy2/?ref=app
It control
0
Like mute loop and other in videoes