Multimedia Tags

 Multimedia Tags in HTML 5

HTML 5 provides separate tags to play video and Audio files.

1) <Video> tag

2)<Audio> tag

3)<source> tag

Implementation-

1) <video> tag

<video id="video1">

    <source src="file_name"

                   type="video/mp4"/>

   </video>

2) <Audio> tag

<audio id="video1">

    <source src="file_name"

                   type="video/mp3"/>

   </audio>

Attributes use in Multimedia tag

  • controls
  • poster
  • mute
  • loop
  • height
  • width

Post a Comment

0 Comments