Half Empty is not same as Half Full
3月
13日
Do you know the chain of super store called Carrefour? I did not realize their logo is a big white letter "C". Can you see it?
THIS IS RED
To change the color to red, you need to pu following tag in front of the text string.
<font color="#FF0000">
to end the color, you need to place
</font>
To turn text to red you write
<font color="#FF0000">THIS IS RED</font>
What is "FF0000" mean?
It is broken in to three vales. In this case "FF" "00" "00". Each values represent "RED" "GREEN" "BLUE" (RGB). FF is the maximum value and 00 is the minimum value. So FF0000 means Max RED, No GREEN and BLUE.
On top you see some of the values you can set for your text.