CBSE Class 10 Computer Applications
Question 26 of 31
Solved Sample Paper 2 — Question 4
Back to all questionsWe can add audio and video elements using the <AUDIO> and <VIDEO> tags, respectively, in the following way :
<HTML>
<HEAD>
<TITLE>Audio and Video Elements</TITLE>
</HEAD>
<BODY>
<AUDIO CONTROLS>
<SOURCE SRC = "ringtone.wav">
Your browser doesn't support AUDIO element.
</AUDIO>
<BR>
<VIDEO CONTROLS>
<SRC = "WORDS.MP4" TYPE = "VIDEO/MP4">
Your browser does not support the video tag.
</VIDEO>
</BODY>
</HTML>