TEXT
These are some pretty basic html codes for text.
Text Size
<font style="font-size:15px">then ur text here</font>
Now u can change the px (pixel) number to alter the text size. e.g.
this is 10px font
this is 12px font
this is 14px font
this is 16px font
this is 18px font
this is 20px font
this is 22px font
Text Color
<font color="white">ur text here</font>
will look like:
ur text here
now, you can also use hex codes as colors. They are six digit color codes. For e.g.
<font color="#FFFFFF">ur text here</font>
will look like:
ur text here
Click Here to go to a page (my favorite place to get color codes) that has has a lot of really nice colors to choose from. Just be sure to add a # before the code to make it work.
Preformatted Text
Aight, say that u typed something in Notepad, and u like how it looks. It's spaced perfectly, but when you put that same selection on ur page the spacing is all wrong. Is there any way you can keep your spacing just as you typed it? yup!
<pre>Preformatted text makes ur text look like a typewriter or notepad text</pre>
that looks like:
Preformatted text
makes ur text look
like a typewriter
or notepad text
LEFT
RIGHT