HTML <video> Tag

145    Share

Dailymotion Video and Image



Live Demo & Try it yourself! Read More » »

Instagram Video


if you're facing "Sorry, this page isn't available" then you need to login in instagram


Live Demo & Try it yourself! Read More » »

Playing a YouTube Video in HTML


To play your video on a web page, do the following:

  • Upload the video to YouTube
  • Take a note of the video id
  • Define an <iframe> element in your web page
  • Let the src attribute point to the video URL
  • Use the width and height attributes to specify the dimension of the player
  • Add any other parameters to the URL (see below)

            https://www.youtube.com/watch?v=3lOjNDvVeZA

            here "3lOjNDvVeZA" is video id


Live Demo & Try it yourself! Read More » »

Video - Methods, Properties, and Events


The HTML DOM defines methods, properties, and events for theelement. This allows you to load, play, and pause videos, as well as setting duration and volume. There are also DOM events that can notify you when a video begins to play, is paused, etc.


Live Demo & Try it yourself! Read More » »

Muted video after autoplay



Live Demo & Try it yourself! Read More » »

Video Autoplay


To start a video automatically, use the autoplay attribute:


Live Demo & Try it yourself! Read More » »

Video Element


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


Live Demo & Try it yourself! Read More » »