Renders text in a "small" font. Although not deprecated, the use of
<SMALL> is discouraged
in favor of style sheets. The font 'size' may be set to a specific
value with CSS.
HTML 4.0 Example:
<SMALL>small text</SMALL>
HTML 4.0 Example
<HEAD>
<STYLE type="text/css">
P { font-size: 10pt; }
</STYLE>
</HEAD>
<P>...Lots of small text...
or
<P style="font-size: 10pt">
...Lots of small text...</P>