Advertisements
Advertisements
प्रश्न
How can we embed audio in an HTML document? Give an example to support your answer.
उत्तर
The newly added HTML5 <audio> element standardizes audio embedding in web pages. The audio element, on the other hand, is relatively new, yet it works in most modern web browsers. The sample below adds audio into an HTML5 document using the browser's standard controls and one source defined by the src property.
Example:
<audio controls="controls">
<source src="media/birds.mp3" type="audio/mpeg">
<source src="media/birds.ogg" type="audio/ogg">
Your browser does not support the HTML5 Audio element.
</audio>
APPEARS IN
संबंधित प्रश्न
Gulzar is a talented musician. He is trying to create a web page so as to share his creations with music lovers across the world. He wants to embed audio and video files in the web page with the following specifications:
To embed audio files:
- The name of the audio file is GulzarNotel.mp3
- The audio should start playing automatically when the page loads.
- The audio controls such as Play, Pause, and Volume should be visible.
To embed video files:
- The name of the video file is GulzarMoviel.mp4.
- The video should play in a window of width 350 pixels and a height of 250 pixels.
- The video controls such as Play, Pause, and Volume should be visible.
To complete the task, Gulzar has written the following HTML code:
To embed audio:
<audio controls autoplay>
<source src="GulzarNotel.mp3''>
</audio controls>
To embed video:
<video width = "350" height = "250">
<source src = "GulzarMoviel.mp4">
</video>
Gulzar is not getting the desired output as the code contains errors. Rewrite the correct statements to help him to complete the task. Underline all the corrections made.
Rajat, a web developer, wants to show a video named “tiger.mp4” in dimensions of 300px width and 200px height on the web page. Help Rajat by writing its HTML code.