HTML Tutorials: Font and Text

Italicized Text:

<i>Blah, blah, blah</i>

Bold Text

<b>Blah, blah, blah</b>

Underlined Text

<u>Blah, blah, blah</u>

Line Through Text

<s>Blah, blah, blah</s>

Font sizes:
To change font sizes, use the code

<font size=#>Blah, blah, blah</font>
And replace the number of the size you want where I put the # sign.

Size 1
Size 2
Size 3
Size 4
Size 5
Size 6
Size 7

Font Faces:
A font face is really just the type of font you want to use. To change it, use the code

<font face=name of font here>Blah, blah, blah</font>

Font Colors:
Change the color of your text by using this code

<font color=name of color>Blah, blah, blah</font>
If you wanted red text, change replace where it says name of color to "red". You can also use a hexcode (see the Basic Terms tutorial).

You can combine the text size, font, and color all into one code

<font face=whatever size=whatever color=whatever>Blaaaaahh</font>