Breaking News
Loading...
Friday, January 9, 2015

How to Create HTML 5 Audio player?

music-player-html-5
HTML 5 was founded on 2009. Compare to HTML, HTML 5 has more features. In this tutorial i will explain you to How to make HTML 5 music player? It will more useful to you to add HTML 5 Audio player on Website or blogs.

You can use this below code to make your own HTML player.

<audio controls="controls">
<source src="Audio file location" autoload="true" hidden="true" type="audio/mp3" /></source>
</audio>
Just Change Audio file Location to your audio file location eg: D:\Songs\Jilla\theme.mp3

If you want to play your audio automatically just use this code.

<audio controls="controls">
<source src="Audio file location" autoload="true" hidden="true" type="audio/mp3" autoplay="true" /></source>
</audio>
 Any problem. Just leave comment below....... Thanks to visit...................

0 comments :

Post a Comment

Back To Top