In this lesson we will be learning about:
Changing text color and size.
Underlining, Bold and Italics.
Changing text color and size
For colorful text we need to use the <font> tag. You must type the words that you want the color to be applied to between the tags like this:
<font>Hello</font>
Now we must give the <font> tag the color property:
<font color="red">Hello</font>
You now see a red Hello in your web browser. You can also use hex value colors:
<font color="#FF0000">Hello</font>
The...