Bacic Tags:
<b> makes things bold
<i> makes things italic
<u> makes things underlined
<p> starts a new paragraph
<br>inserts a break
Font Size:
There are 7 font sizes you can use one being the smallest and 7 being the highest...
<font size=1>type your text here</font>
You can replace the 1 with whatever size you want the font to be !!!
Coloured Font:
Use this code to make your font coloured... replace the FFFFFF with any hex code, see the hex codes page for further details.
<font color="FFFFFF">text here</font>
Bullets:
This is the basic code for bullets, change the bullet 1, 2, 3... to what you want and to add more repeat the <li> section.
<ul>
<li>bullet one
<li>bullet two
<li>bullet three
</ul>
Numbered Lists:
This is bacicly the same as above except it's a numbered list instead of a bulleted one.
<ol>
<li>point one
<li>point two
<li>point three
</ol>
Background Colour:
Background colour works in much the same way as font color except it affects the whole page. To change your background colour simply type this near the top of your page...
<body bgcolor="#FFFFFF"> or <body bgcolor="white">
And replace hex code with whatever you wish.