Lesson 2: Font Tags
(Font Sizing)

You can set the text size with the "<font>" tag and the "size" attribute. Depending on your browser settings, some of the smallest font sizes may look the same.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Welcome to HTML</title>
</head>

<body bgcolor="#bdbdbd" text="black">
<font size="-3">Smallest Font size</font><br />
<font size="-2">Tiny Font size</font><br />
<font size="-1">Small Font size</font><br />
<font size="+0">Default Font size</font><br />
<font size="+1">Large Font size</font><br />
<font size="+2">Larger Font size</font><br />
<font size="+3">Even Larger Font size</font><br />
<font size="+4">Largest Font size</font><br />
</body>
</html>