Vishal wants to upload the audio of his annual day performance on his blog page write down the HTML tag that he must use and any three attributes along with their descriptions that Vishal can use with this tag
Answers
Answered by
0
Explanation:
Now every person can get any information on a click. ... If we want to get the desired information from web server then it has to use some ...
Answered by
1
He can add audio by using the audio tag.
<audio> <source> </audio>
He can use the following three attributes:
1. src = " Link "
It holds the source of the audio, Path of the audio.
2. type = "audio/ogg"
It is used to define the type of audio
3. muted
Specifies that the audio output should be muted
Example:
<audio controls muted>
<source src="Audio.ogg" type="audio/ogg">
</audio>
Similar questions