making music autoplay / play in my blog

I am testing code to put music in my website
audio in 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>
Share this post :

Post a Comment

 
Support : Creating Website | Johny Template | Mas Template
Copyright © 2011. NayaBlog - All Rights Reserved
Template Created by Creating Website Published by Mas Template
Proudly powered by Blogger