HTML Help
I'm here to help you with basic html, so once i get the material up, it'll all be here, until then, check out http://www.lissaexplains.com/, she has GREAT(I mean REALLY, REALLY GREAT) html help!

BASIC HTML
Hey I'm gonna try to teach you BASIC html, so you won't find anything fancy here, sry! So let's begin!

Font: You can change the font size, face and colour with a simple tag!
Type in the following tag...

<font face="arial" size="3" color="red">This</font> and you get This
let me explain...

the

<font face="YOUR FONT HERE"> tag let's you put whatever font you want for your webpage. So you would type your font where it says.

the

<font size="YOUR SIZE HERE"> part of the tag (the "font" part isn't needed as shown in the first example) let's you make your text WHATeVER size you want. The sizes range from 1-7 or you can use things like 12pt or 14pt or watever.

the

<font color="YOUR COLOUR HERE"> part of the tag (the font part isn't needed as shown in the first example) let's you make your text ANY colour you want. You just add the color you want, or use the HEXCode for the colour. The hex codes can be found at http://www.bobgirl.com/.

Background: Your page can have a background image or a colour.
For a background image type in the folowing...

<body background="IMAGE URL HERE">. If you want a "fixed" background(only the text moves when you scroll) just type in <body background="IMAGE URL HERE" bgproperties="fixed">.
For a background colour, just type...<body bgcolor="COLOR HERE">.

That's all for now, come back soon!