Adding music to your email or web page can create a mood or an atmosphere or just make your page more interesting. Here's how to do it with WebTV:
First you need a song to add. To get the URL (internet address), find a midi that you like. After you click the song & it is playing, Push "GoTo", then "Show Last". Now the URL is in the "Address:" box. Copy the URL using Cmd-c. Then paste it using Cmd-v to place the URL between the quotation marks in one of the following tags.
To find MIDI's, I suggest MIDI Explorer and vanBasco.
This tag is recognized by MSIE & is designed to be used in
the head of a web page, but will work anywhere for
WebTV:
|
<html> <head> <title> Title of your page </title> <bgsound src="URL_of_your_song" loop="?"> </head> <body> Rest of Page </body> </html> |
This tag is recognized by Netscape Navigator & is designed to be used in the body of a web page.
To make them work you need to create a page with just the midi on it, then embed that page in your email.
Of course, you have already transloaded the song to your own account.
First create the page & name it something like
my_song1.html:
Now embed this page in your email:
Midnight Midis
<embed src="URL_of_your_song" autostart="true" loop="?">
If you use autostart, the song will start
automatically.
If you leave it out, a speaker or "play tune" image will appear that can be clicked on to start the music.
Replace "?" with the number of times you want the song to play. For continuous play, use loop="true".
Putting it farther down in your code should allow the viewer to see part of the page before the music starts.
<html>
<head>
<title>
Title of your page
</title>
</head>
<body>
Rest of Page
<embed src="URL_of_your_song" autostart="true" loop="?">
</body>
</html>
<html>
<body>
<embed src="URL_of_your_song" autostart="true"
loop="true">
</body>
</html>
<embed src="URL_of_my_song1.html">
Now go boogie with your favorite tunes!
Music pages by Gnubee
After Hours (light jazz & fusion)
Love That Latin
Let's Get Funky
Midnight Mods
Mallrats Help Site
This FAQ © 1999, 2002 by Gnubee
This page was inspired by questions presented at ADWH &
Html.Help.Gnubee