Filter (Advanced Search)
Downloads
0
Views
269
Video

Video is not available... Embedded is previous playlist.

Details

The HTML <video> element is used to show a video on a web page.


<!DOCTYPE html> 
<html> 
<body> 

<video width="350" controls>
  <source src="/html/videos/eWordIcon.mp4" type="video/mp4">
  <source src="/html/videos/eWordIcon.ogg" type="video/ogg">
  Your browser does not support HTML video.
</video>

<p>Video URL » » <a href="https://www.youtube.com/watch?v=3lOjNDvVeZA" target="_blank" style="text-decoration:none";>ICON | e-Word of the Week | 9th Class | 2022-23 | Computer Science</a>.
</p>

</body> 
</html>



How it Works

The controls attribute adds video controls, like play, pause, and volume.

It is a good idea to always include width and height attributes. If height and width are not set, the page might flicker while the video loads.

The <source> element allows you to specify alternative video files which the browser may choose from. The browser will use the first recognized format.

The text between the <video> and </video> tags will only be displayed in browsers that do not support the <video> element.

Ad