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