Tables Frames
Basics HTML Javascript
Fun Stuff
DHTML
Colors
Colors
Color numbers below
To add a background image to your page, you need to add this tag after the </HEAD> tag, remember that you can use a .gif or a .jpg, you just have to change the filename in the following code if you use a .jpg. Substitute your own information where you see bold text:

<BODY BACKGROUND="your background image name.gif">

If you just want a background color, you would add this tag after the </HEAD> tag:

<body bgcolor="#000000" (whatever color # you want)>

If you want to have a color background AND a background image (you will have a color background while the background image loads), you can add this tag after the </HEAD> tag:

<body background="name of background.gif" bgcolor="#000000">(whatever color # you want)

You can also have a fixed background. When you scroll down your page, your images and text will move but the background image will stay in a fixed position. Just put this tag after the </head> tag:

<BODY BACKGROUND="YourImageName.gif" bgcolor="#ffffff" bgproperties="fixed">