HTML III AUDIO VIDEO FORMS 2025 CLASS X
Class
10 Computer Application [165] Question Answer
HTML III AUDIO VIDEO AND FORMS
1. What types
of Audio file can be inserted in the HTML file?
OR
Write the name
of popular audio format, which you can embed in HTML document.
Answer: MP3, WAV, MIDI, m4a, ogg/oga
2. In how many
ways you can insert audio files in HTML pages?
Answer: Audio files can be
inserted in threes ways in HTML pages. These are
(i) Linking to an Audio Clip,
(ii) Embedding audio file using <EMBED> tag,
(iii) Embedding audio file using <AUDIO> tag.
3. What do you
mean by Linking to an Audio clip?
Answer: Linking to an audio clip
is just like of linking to an external graphics or web page. It can by done by
using <A> anchor tag.
<A href = “audio-file.mp3”>Play Audio </A>
4.
Differentiate between Inserting an audio and Embedding an audio clip?
Answer: Inserted audio click won’t
start automatically, it will start by clicking on hyperlink text or image.
An embedded Audio clip start automatically, as soon as the page
displays or it can start by clicking on play control on the embedded helper
application.
5. What is
<EMBED>?
Answer: <EMBED> is a tag in
HTML, use to embed audio / sound clip into a web page.
Syntax:
<EMBED SRC = “URL OF AUDIO FILE” WIDTH=”VALUE” HEIGHT =
“VALUE” LOOP = TRUE/FALSE /> Embedded objects appear on their own lines,
centered on the page.
6. Embed Audio and Video-
Audio Example:
<audio controls>
<source src="audiofile.mp3" type="audio/mpeg">
</audio>
Video Example:
<video width="300" height="200" controls>
<source src="movie.mp4" type="video/mp4">
</video>
Comments
Post a Comment