HTML allows you to add attributes to your tags to change their look and feel. We'll start off by changing the <BODY> tag, this will change the look of your entire site. You only need one <BODY> tag per page but I'm going to show you a bunch of different ones with different attributes that you can change and edit. If you want to use more than one just add it inside the body tag after the first one, seperated by a space.

Backgrounds (images)

Change the background of your site to an image.
<BODY background="IMG URL HERE">

Backgrounds (colors)

Change the background of your site to a different color, white is the default.
<BODY bgcolor="COLOR OR HEX CODE HERE">

Text Color

This will change the color of all the text on your page.
<BODY text="COLOR OR HEX CODE HERE">

Make a Line

Width is the width and size is the height, both in pixels.
<hr width="NUMBER" color="COLOR" size="NUMBER">

Making a Space

Browsers will only reconize one space, if you type two in a row it will ignore the second space. If you wnat more than one use this code.
&nbsp;

Go on to fonts>>