which tag is used to play audio file without control on web page
Answers
Answered by
0
audio tag defines such as music or other audio streams
riddhim99:
please click brainiest
Answered by
0
Hi friend!
The <audio> tag defines sound, such as music or other audio streams.
Currently, there are 3 supported file formats for the <audio> element: MP3, WAV, and OGG.
To insert audio file in an HTML file is possible only with HTML5
Now, the tag:
<audio controls>
<source src="path" type="audio/{the audio type, eg: mp3, etc.}">
<source src="path" type="audio/{the audio type, eg: ogg, etc.}">
Your browser does not support the audio tag
</audio>
The "Your browser... tag" is executed or displayed if there is an error in playing the audio file(s). You can insert multiple audio files using the above format.
Hope you found my answer helpful. Keep Smiling!
The <audio> tag defines sound, such as music or other audio streams.
Currently, there are 3 supported file formats for the <audio> element: MP3, WAV, and OGG.
To insert audio file in an HTML file is possible only with HTML5
Now, the tag:
<audio controls>
<source src="path" type="audio/{the audio type, eg: mp3, etc.}">
<source src="path" type="audio/{the audio type, eg: ogg, etc.}">
Your browser does not support the audio tag
</audio>
The "Your browser... tag" is executed or displayed if there is an error in playing the audio file(s). You can insert multiple audio files using the above format.
Hope you found my answer helpful. Keep Smiling!
Similar questions