<video>
Learn how <video> tag works in HTML.
The <video>
tag in HTML
The <video>
tag embeds audio files in an HTML page. The structure of the <video>
tag is as follows:
<video>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Video tag is not supported in the browser
</video>
The <video>
tag itself can reference video files.
However, the <source>
tag(s) inside the ...