+ 4
How do you add sound to your program?
I want to add sound to my program, but is it possible?
2 Answers
+ 1
the <audio> tag in HTML
0
<audio controls>
<source src="audio link" type="audio/mpeg">
</audio>
---------or----------------
<audio src="audio link" controls>
</audio>