0
Hello ,,,, how i can add a audio player to html webpage??
3 Antworten
+ 2
<audio controls>
<source src="horse.ogg"type="audio/ogg">
<source src="horse.mp3"type="audio/mpeg">
Your browser does not support the audio tag.
</audio>
for more informations plz visit this link
https://tutorialehtml.com/en/html-tutorial-embed-audio/
+ 1
Use the tag <audio> which is available in HTML5. Check the HTML course in SoloLearn to get a better idea.
0
Ok. Thank you...👍