CBSE Class 10 Computer Applications
Question 16 of 31
Solved 2023 Question Paper CBSE Class 10 Computer Applications (165) — Question 4
Back to all questions 4
Question Question 15
How can we embed audio in an HTML document ? Give an example to support your answer.
We can embed an audio in an HTML document by using the audio tag. To add an audio file named "ringtone.wav" we can use the following HTML code:
<AUDIO CONTROLS>
<SOURCE SRC = "ringtone.wav">
Your browser doesn't support AUDIO element.
</AUDIO>