Manipulating font size and color


I think all of you know what a font is. Would you like me to explain? If so go here.
Okay here we go...
Suppose you have a sentence and you want to make it bigger.
Here is how:
Above the sentence or word or letter of which you want to change the size, type the following:
<FONT SIZE="+1">Your text here</FONT>
"+1" means the size of font. "+" means making it bigger and "-" means making it smaller.
"1" in the above example means the size of font. It can be replaced by any number.
Suppose the sentence you want to change color of is "I am a good boy". This is the way to do it:
<FONT SIZE="+1">
I am a good boy
</FONT> The above example will give us this:
I am a good boy

To change the font color, replace SIZE with COLOR and between the inverted comas write the name of the color or its hex code.
Say you want to change the color of the first example.
This is how:
<FONT COLOR="red">
I am a good boy
</FONT>
This will give us this:

I am a good boy

Suppose you want to change both the font size and the font color at the same time.
Here is how:
Say you want to take the example:
I am a good boy
Here is how:
<FONT SIZE="+1" COLOR="red">
I am a good boy
</FONT>
This will give us this:

I am a good boy

In the same way, you can change the size and color of your text.
This is simply cool.

Next--->

Send feedback