Adding Music/Sounds to Your Page

The Link Method

<a href="path to music file ">Click here for Mucis</a>

Using the Embed Method

<EMBED src="path to mucis file ">

width="144 " : Tells the browser how wide you wish the sound display to be. Input a number in pixels. The most common width is 144.

height="60" : Tells the browser how tall you want the sound display to be. Input a number in pixels. The most common height is 60.

autostart="true" : Instructs the browser to begin playing the file automatically once it has been loaded on the page. You can set this value to true or false. The default is false.

loop="true" : Instructs the browser to play the file over and over again for as long as someone is on that page, or until the user hits the stop button on the display. You can set this value to true or false. The default is false.

hidden="true" : This command tells the browser to hide the sound display so people viewing you page don't see the sound display with the control buttons. The sound plays as though it were just in the background somewhere. You can set this to true or false. The default is false.

<EMBED src="path to music file" width="144" height="60" autostart="true" loop="true" hidden="true">

Hosted by www.Geocities.ws

1