You can change and decorate your text on html page. It's can be done by means of <font> tag. With this tag you can change face of font, it size and color.

List of <font> tag's attributes
color Determines a color of font.
face Determines a face of font. It may have a next values:
serif - font like Times
sans-serif - font like Arial
cursive - font like Monotype Corsiva
fantasy - "fantasy" font like this
monospace - monospaced fonts like a curier
size May have values from 1 (smallest) to 7(biggest). Default value is 3.

Examples

<font size="1">Text with size 1</font><br />
<font size="2">Text with size 2</font><br />
<font size="3">Text with size 3</font><br />
<font size="4">Text with size 4</font><br />
<font size="5">Text with size 5</font><br />
<font size="6">Text with size 6</font><br />
<font size="7">Text with size 7</font>
Text with size 1
Text with size 2
Text with size 3
Text with size 4
Text with size 5
Text with size 6
Text with size 7

This example show how you can change size of your text.

<font color="red">Text of red color</font>
Text of red color

This simple example shows how you can change font color of your text.

<font face="serif">Font like a Times New Roman</font>
Font like a Times New Roman

This simple example shows how you can change face of your text. Remember that font can be differ depending on browser, operating system and fonts which user has.

The next example shows how you can combine <font> tags and these attributes.

<font color="red" size="5" face="cursive">L</font>
<font color="black" size="3" face="monospace">orem ipsum dolor sit amet, consectetuer adipiscing elit,
<font color="darkblue">sed diam nonummy</font>
nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum
<font size="4" color="red">zzril delenit augue duis dolore</font> te feugait nulla facilisi.</font>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.

HTML menu.