Webtv HTML Tutorial



Okay so we have now changed your background and text colors as well as added an image. How about we add some music? Our next tag will be <EMBED>. Add this line between the <BODY> tags.

<EMBED SRC="url of midi here">

Finding the URL for a midi is basically the same as finding one for a image. Instead of clicking on show current, however you will need to click on SHOW LAST. Then just copy and paste like before.

For a good source of midis click here.

This is a search engine for midis. Just enter the name of the song you are looking for and you will get several different versions of the song. Click on one of the choices, and when the song you want starts playing follow the instructions above to get the URL.

To make the midi start playing automatically add autostart="true" to the tag. It should look like this.

<EMBED SRC="url of midi here"autostart="true">

To make the midi play over and over add loop="true" to the tag. It should look like this.

<EMBED SRC="url of midi here"autostart="true"loop="true">

Now add the EMBED line into your code so that it looks like this.

<HTML>
<BODY BGCOLOR="lightblue"TEXT="darkblue">
<IMG SRC= "http://geocities.datacellar.net/nisy1/gifs/g52.gif">
<EMBED SRC= "http://geocities.datacellar.net/nisy1/gifs/uninvited.mid" autostart="true"loop="true" >
</BODY>
</HTML>


E-Mail yourself again and see what you think.




1