Back
Okay... if you're here then you probably decided to add midis (sound files) to your webpage and want to know how. Let's see if I can explain this in a way that ahybody could understand. ;)
First, you have a midi. For this example I'm using mysong.mid.
The code I'd use to put this on my webpage is <EMBED src=http://username.tripod.com/multimedia/mysong.mid width=272 height=40 Autostart=false LOOP=1>
This may look like a bunch of mumbo-jumbo, but I'll explain it (at least I will try to explain it ;) ).
src=http://username.tripod.com/multimedia/mysong.mid This tells the address of the file.
http://username.tripod.com/ is my website's address, multimedia/ is the folder I put the file in, and mysong.mid (like I said above) is the file name.
width=275 height=40 just gives the size of the control consol (the thing with the start and stop buttons)
Autostart=false means that the song won't start automatically when you go to the webpage, you have to hit the start button. If you want the song to start automatically, change Autostart=false to Autostart=true
LOOP=1 just says how many times the songs will play. :)
I hope this helps you add midis to your webpage!