write a code for html song..
Answers
Answered by
6
You can embed a music file into your page using the following HTML code: <embed src="/music/good_enough.mp3" width="180" height="90" loop="false" autostart="false"> <audio src="/music/good_enough.mp3" controls> <embed src="/music/good_enough.mp3" width="300" height="90" loop="false" autostart="false"> </audio>
Answered by
5
<audio controls>
<source src="horse.ogg"type="audio/ogg">
<source src="horse.mp3"type="audio/mpeg">
Your browser does not support the audio element.
</audio>
Similar questions