The Idiots' guide to html code (2)
So, you want to use images? Good idea. Images are simple. The code is simply <IMG SRC="XXXX" WIDTH="YYYY" HEIGHT="ZZZZ">. XXXX is the source for your image (the name.gif or .jpg, etc.), YYYY is the width value in pixels, and ZZZZ is the height value in pixels. So, to have an image of the World Champions' logo, I would insert the code <IMG SRC="wchampslogo.jpg">, and it would turn out like this:

Notice on my code, I didn't input the height or width. If you don't input these numbers, the image will be the default size. Also notice that I didn't have to put the entire address for my image (e.g. http://www.fortunecity.com/tattooine/bester/101/wchampslogo.jpg). It is only necessary to type in the file name (e.g. wchampslogo.jpg). Also keep in mind that you can't have an image on your computer show up just because you input its file name. In order to transfer an image on your computer to your web site, you will have to use the upload option, available on most servers.
You probably don't want to have just one solid color for a background; a background image enhances the web site. In order to put a background image on your page, use the code <BACKGROUND="XXXX">, where XXXX is the file name of the desired background. This code usually goes with the BODY BGCOLOR, TEXT, LINK, and VLINK codes. It does matter which order these codes go in. I have found that some ways of ordering these codes don't work. But I have found a good way of ordering the codes. This web site has the code: <BODY BGCOLOR=#000000 TEXT=#38B0DE LINK=#32CD99 VLINK=#FFFFFF BACKGROUND="slate.gif">
Sounds are fun to play around with on the computer. There are two main ways to have sound on your page. One way is to have it play as a background sound, the other is to create a link to your sound. The second way is more popular for those who have complete sound pages; the first way is popular when you want a sound to automatically start up upon loading. Okay, the first method: Playing background sounds. Use these codes: <EMBED src="WWWW" autostart="XXXX" width="YYYY" height="ZZZZ"><bgsound="WWWW">. The EMBED SRC (WWWW) is the filename for your sound, as is the BGSOUND (WWWW). The autostart is whether or not you want the sound to automatically play upon loading. If you want it to automatically play, type in "true" for the XXXX. If you don't, type in "none" for the XXXX. The width and the height are optional and only tell your browser how big the player is going to be if you have the correct plugin. I recommend 140 for the width and 60 for the height. Here is an example of the first method, without having it automatically play: