<BGSOUND SRC="sinema.mp3"
 LOOP="n|INFINITE"
 VOLUME="n"
 >
|
Problem is this is only supported by Microsoft.
This is how the backround sound is being done
on this web page.
LOOP=n is the number of times the sound will be played.
Left off it plays 1 time.
Use LOOP=INFINITE to play forever.
|
<EMBED SRC="sinema.mp3"
 AUTOSTART="TRUE"
 HIDDEN="FALSE"
 LOOP=TRUE|FALSE|n
  CONTROLS=VOLUMELEVER |
  STOPBUTTON |
  PAUSEBUTTON |
  PLAYBUTTON |
  SMALLCONSOLE |
  CONSOLE
 >
|
|
<HEAD>
<meta http-equiv="REFRESH"
 content="0;
 URL='sinema.mp3?autostart=true'"
 >
</HEAD>
|
This page uses this technique.
It is kind of annoying because it does not display the
web page. Instead it just plays the sound with
a blank background.
Also your supposed to put <META> tags between
the <HEAD> and </HEAD> tags.
|