Answers for "html audio tag example"

5

audio in html

<audio controls>
<source src="sound.ogg" type="audio/ogg">
<source src="sound.mp3" type="audio/mpeg">
No audio support.
</audio>
Posted by: Guest on August-05-2021
0

html5 audio

<audio src="/test/audio.ogg">
<p>Tu navegador no implementa el elemento audio.</p>
</audio>
Posted by: Guest on January-08-2021
-1

html audio tag

<audio controls>
<source src="sound.ogg" type="audio/ogg"/>
<source src="sound.mp3" type="audio/mpeg"/>
</audio> 
this will also work in react js & html
Posted by: Guest on February-27-2022

Browse Popular Code Answers by Language