HTML | HTML

<video>

tag

This is a demo of HTML <video> tag and it's fall-back for when it's not working

<video> tag in HTML snippet will look like this:

      
        <video width="480" controls poster="https://archive.org/download/WebmVp8Vorbis/webmvp8.gif">
          <source src="https://archive.org/download/WebmVp8Vorbis/webmvp8.webm" type="video/webm">
          <source src="https://archive.org/download/WebmVp8Vorbis/webmvp8_512kb.mp4" type="video/mp4">
          <source src="https://archive.org/download/WebmVp8Vorbis/webmvp8.ogv" type="video/ogg">
          Your browser doesn't support HTML5 video tag.
        </video>
      
    

The page should look like 1 of the the folowing image:

Should like like image Should like like image