Answers for "audio tag in html save as"

9

how do you play audio files on html

<audio src="sound.mp3" autoplay></audio>
Posted by: Guest on March-15-2020
-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