0
How to add audio files to my html page
3 Answers
+ 1
<audio controls>
<source src="path_to_file.mp3" type="audio/mpeg">
unsupported browser message goes here
</audio>
0
thanks i will try it
0
<audio src="file" type="audio/mpeg"></audio>
or
<audio src="file" type="audio/mp3"></audio>