HTML TUTORIALS-
HTML Multimedia Tag β
Introduction-
πΉAll HTML Multimedia refers to the integration of audio, video, and interactive content into a webpages. HTML5 introduced powerful tags that make adding multimedia easyly without using relying on plugins like Flash....
π₯ HTML Multimedia: Video?:-
<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>
π Common Video Formats:-
Format | Extension | MIME Type | Browser Support | Notes |
---|---|---|---|---|
MP4 | .mp4 | video/mp4 | All modern browsers | Most widely supported |
WebM | .webm | video/webm | Modern browsers | Open format, good compression |
Ogg | .ogv | video/ogg | Limited (Firefox, Chrome) | Older open-source format |