To add some background music on your web pages you have
two different html codes depending on the browser :
For Netscape :
In the <body> section of your html code your insert :
<embed src="music.mid"
hidden="true" align="baseline" border="0" width="11" height="13"
loop="infinite"> and you replace music.mid
by your music. Hidden is used to hide the plugin (true, it's hidden,
false, it's visible) and loop is the number of times you want
the music to be played. To play indefinitely, put loop="infinite"
For Internet Explorer :
In the <head> section of your html code your insert
:
<bgsound src="music.mid"
loop="infinite"> and you replace music.mid
by your music.
To put an animated gif on your web page, in the <body>
section where you want the gif to be displayed, you must put :
<img src="image.gif" width="400"
height="232"> and you replace image.gif by the name of your
image, indicating its width and height.