The small tag renders the specified text in a smaller than normal font size. The exact size of the text may prove to be browser dependent.
Although WML is a small language, there are seven tags that can affect the appearance of a character or text (b, big, em, i, small, strong, and u). The complementary big tag renders the specified text in a larger than normal font size.
Nested Tags: a anchor b big br em i img small strong table u
<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN"
"http://www.WAPforum.org/DTD/wml_1.1.xml">
<wml>
<card id="card1" title="Card 1">
<p>
Think <big>Big!</big>
</p>
<p>
Think <small>small!</small>
</p>
<p>
<small><b>DevGuru in small and bold</b></small>
</p>
</card>
</wml>This example uses the small tag to display the text 'small!' in a small font, and the text 'DevGuru in small and bold' in a small bold font.