+ 8
How to add audio in HTML
Audio
7 Respuestas
+ 6
You cannot add audio in CSS well...
Add audio using HTML or JavaScript..
+ 9
Yeah sure.. Add audio in HTML like this..
<audio controls>
<source src="audio.ogg" type="audio/ogg">
<source src="audio.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
+ 8
Almost all browsers including IE 9 and its higher versions support this.
+ 7
Ok, okay, I change question.
+ 3
you should try this it will workhttps://www.sololearn.com/Discuss/1291724/?ref=app
+ 3
https://code.sololearn.com/W2J9yIZmd6JN/?ref=app
+ 2
In HTML5 using <audio> Tag
https://www.sololearn.com/learn/HTML/2193/