
One of the most asked questions that I've been getting is, can I have help with HTML? So I have now creating this page to help you. It will cover some of the basic HTML aspects, such as text colour and size changes. More will be added as time goes on, depending on requests.

In HTML, there a quite a few ways to change the size of text. I'd say this is the most easy one to get the hang of. Simply change the number to alter the size (explained below.) Edit the red section to change the size. The higher the number, the bigger the text, the smaller the number the smaller the text. Here is the code -
<FONT SIZE="6">Your Text Here </FONT>
Here is a chart showing text sizes..
This text is FONT SIZE 6
This text is FONT SIZE 5
This text is FONT SIZE 4
This text is FONT SIZE 3
This text is FONT SIZE 2
This text is FONT SIZE 1
Changing your text colour with HTML requires a simple code. Just edit the 'red' section to change the colour (eg. red, yellow, skyblue)
<font color="red">YOUR TEXT HERE</font>
That's about it. Most colour names work for this, but if want to get a more precise colour you can use this..
<FONT COLOR="#FF0000">YOUR TEXT HERE/FONT>
The red section requires a HTML colour code, here is a website where you can find a colour code to suit you - http://html-color-codes.info/
MORE IS COMING SOON!


