To display a video using HTML, employ the <video>
element:
<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> |
The controls
attribute adds play, pause, and volume controls to a video. It’s recommended to set width
and height
to avoid page flickering during loading.
The <source>
element specifies alternative video files for browser compatibility, with the first supported format being used. Text between the <video>
tags is displayed only in browsers that don’t support the <video>
element.