CBSE Class 10 Computer Applications
Question 14 of 48
HTML III — Audio, Video and Forms — Question 3
Back to all questions 3
Question Question 3
Which are the ways to add an audio file in a web page ?
- Linking via
<A> - Embedding via
<EMBED> - Embedding via
<VIDEO> - All of these
Linking via <A>
Embedding via <EMBED>
Reason — We can link an audio file via anchor tag <A> in the following way :
<A HREF = "audio.mp3"> Click to Play </A>
We can link an audio file via embed tag <EMBED> in the following way :
<EMBED SRC = "audio.mp3" WIDTH = "100" HEIGHT = "50" AUTOSTART = "TRUE" LOOP = "TRUE">
<VIDEO> tag is used to insert a video file in HTML page.