Skip to main content

Media

Media | HTML: Media is the almost everything, is like audio, video, recordings, images, animations and so on.

Here is the media.html:

  1. <!DOCTYPE html>
  2. <html lang="en" dir="ltr">
  3.   <head>
  4.     <meta charset="utf-8">
  5.     <title>Media in Html</title>
  6.   </head>
  7.   <body>
  8.     <video src="multimedia.mp4" height="312" width="420" controls>
  9.       Your browser not support video files.
  10.     </video><br><br>
  11.     <audio src="nimbus.mp3" controls>
  12.     </audio><br><br>
  13.     <iframe src="https://www.youtube.com/embed/q-72epsxMUk"
  14.     width="420" height="312"></iframe>
  15.   </body>
  16. </html>

Web view of Html:




Here is the Video: