| How
do I get MIDI to play on my site?
Explorer
uses the BGSOUND tag
The
HTML tag for this is:
<bgsound
src="song.mid" loop="3">
Where
src= would be the link to the file.
Where loop= would be how many times the
song repeats.
Netscape
uses the EMBED tag
The
HTML tag for this is:
<EMBED
SRC='yoursong.mid' AUTOSTART="True" HIDDEN="True"
LOOP="false">
Where
loop=false means only one rendition will
be heard.
Where loop=true will provide repeat the
rendition over and over. |