Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML <small> Tag


Example

Define a smaller text:

<p>This is some normal text.</p>
<p><small>This is some smaller text.</small></p>
Try it Yourself »

Definition and Usage

The <small> tag defines smaller text (and other side comments).


Browser Support

Element
<small> Yes Yes Yes Yes Yes

Global Attributes

The <small> tag also supports the Global Attributes in HTML.


Event Attributes

The <small> tag also supports the Event Attributes in HTML.


Related Pages

HTML tutorial: HTML Text Formatting

HTML DOM reference: Small Object


Default CSS Settings

Most browsers will display the <small> element with the following default values:

Example

small {
  font-size: smaller;
}
Try it Yourself »