The FONT Tag

Text can be styled by changing its appearance, size, and color by using the <font> tag, with the matching closing tag </font>. This is done through the use of attributes, which are placed inside the opening tag. 

The three main attributes for the <font> tag are:

face The name of the font type to be used. Note: A users computer may not have the font type you specify. In that case, the browser will substitute a similar font type.
size Ranges from 1 (smallest) to 6 (largest)
color May be specified either using the pre-defined color names, or by using the hexadecimal value preceded by a #.

For example, to format text to appear as size 1, blue, and Times New Roman, the tag would look like this:

<font size='1' color='blue' face='Times New Roman'>
This text will be size 1, blue, and in Times New Roman
</font>
This text will be size 1, blue, and in Times New Roman