Home | Computer Science

<
Audio & Video

Defination

The <video> tag is used to embed video content in a document. The <audio> tag is used to embed sound content in a document.


FRAMSET Some information
Program
INPUT

<html> <head> <body> <audio controls> <source src="song.mp3" type="audio/mp3"> </audio><br><br> <video controls height="120" width="200"> <source src="video.mp3" type="video/mp3"> </video> </body> </html>

OUTPUT