I am testing code to put music in my website
to put audio system code used is<audio></audio>html tag
inside the code i am putting the source for music and type.
<audio>starts the audio
-> controls="control" //helps to show controls for audio
-> autoplay="autoplay" //make the music play auto as the page loaded
->loop="loop" //it makes songs repeat after songs is finished
<source src="D:\songs\ishqwala.mp3" //providing path to mp3 where it located
->type="audio/mp3" //if audio format is mp3
"audio/wav" //if audio format is wav
</audio>close the audio tag
Ishq wala love autoplay<audio controls="controls" autoplay="autoplay">
<source src="" type="audio/mp3">
<source src="horse.mp3" type="audio/mp3">
Your browser does not support the audio tag.
</audio>
<br/>
Ishq wala love manual play<audio controls="controls" autoplay="autoplay" loop="loop">
<source src="D:\songs\ishqwala.mp3" type="audio/mp3">
<source src="horse.mp3" type="audio/mp3">
Your browser does not support the audio tag.
</audio>
audio in website |
inside the code i am putting the source for music and type.
<audio>starts the audio
-> controls="control" //helps to show controls for audio
-> autoplay="autoplay" //make the music play auto as the page loaded
->loop="loop" //it makes songs repeat after songs is finished
<source src="D:\songs\ishqwala.mp3" //providing path to mp3 where it located
->type="audio/mp3" //if audio format is mp3
"audio/wav" //if audio format is wav
</audio>close the audio tag
Ishq wala love autoplay<audio controls="controls" autoplay="autoplay">
<source src="" type="audio/mp3">
<source src="horse.mp3" type="audio/mp3">
Your browser does not support the audio tag.
</audio>
<br/>
Ishq wala love manual play<audio controls="controls" autoplay="autoplay" loop="loop">
<source src="D:\songs\ishqwala.mp3" type="audio/mp3">
<source src="horse.mp3" type="audio/mp3">
Your browser does not support the audio tag.
</audio>
Post a Comment