Sound embed tag in HTML?

Put the sound file in a flash and publish it into a swf, then embed the flash file into your html file and set it to hidden.
 
<embed src="yourmusic..whatever"
width=25 height=25 autostart=false repeat=true loop=true> </embed>

you can change width height autostart (I prefer off) repeat and loop
last 3 are true and false just making sure you know
 
<embed src="yourmusic..whatever"
width=25 height=25 autostart=false repeat=true loop=true> </embed>

you can change width height autostart (I prefer off) repeat and loop
last 3 are true and false just making sure you know
 
Back
Top