In HTML, the <small>
element is used to display inline text as side comments or small print.
It is used to show content like copyright and legal text. The text within the tag is rendered one font size smaller than it originally is. If small, it will change to x-small.
<small> small content </small>
The following code demonstrates the usage of <small>
element in HTML
.
The content which we want to be displayed as small text is written within the opening and closing <small>
and </small>
tags.