video
A video element is used for playing videos or movies, and audio files with captions. 4.7.10. The video element
Links about video
How accessible is the HTML video player?
Comparing keyboard and screen reader accessibility of native video players.
Tags:<video>: The Video Embed element
The HTML Video element (video) embeds a media player which supports video playback into the document. You can use video for audio content as well, but the audio element may provide a more appropriate user experience.
Code sample
<video controls width="480">
<source src="video.webm" type="video/webm">
<source src="video.mp4" type="video/mp4">
Sorry, your browser doesn't support embedded videos.
</video>
Explore other pages
- rel
Defines the type of link.
- await
Used to wait for a Promise.
- JSON.stringify()
Returns a String in UTF-16 encoded JSON format
- :not()
Represents an element that is not represented by its argument.