Music

akuma69

New Member
Messages
32
Reaction score
0
Points
0
Hi,

I'm trying to set some music on my website but seem to have hit a wall, i search in the forum but don't seem to find anything helpfull.

If you haven't figure it out that i'm new at this web desing well I am. anything would be helpfull.

Thank you for your time.:dunno:
 

examcollection

New Member
Messages
11
Reaction score
0
Points
0
I recommend you to to join the IRC Support Channel.
Edit:
Dear Admin,

You should consider adding a ShoutCast Hosting Plan. I am sure x10 will attract many customers.
 
Last edited:

Hazirak

New Member
Messages
197
Reaction score
0
Points
0
There's a couple different ways to add sound to a page.

One way is with HTML's bgsound tag... it does exactly what it says, adds a background sound.
HTML:
<bgsound src="sound.wav" loop="1">
Another method is to use the (deprecated) embed element.
HTML:
<embed src="sound.mid" height="15" width="145" autostart="false" volume="100%"></embed>
A little more searching, oddly enough, turns up an actual sound tag.
HTML:
<sound src="sound.wav" loop="1" delay="3">
Hope this helps.
 
Top