Loading...
HTML <small> Tag

HTML <small> Tag

In this tutorial, we will learn about small tag in HTML with the help of examples.


<small> Tag

Small tag <small> is used to define the smaller font-size text.

Note : The <small> tag is used to write copyright and other contents.

Syntax

<small>.........</small>

Example

<!DOCTYPE html>
<html>
  <head>
    <title>Small Tag</title>
  </head>
  <body>
    <p>This is normal text.</p>
    <small>This is smaller text.</small>
  </body>
</html>

Output

This is normal text.

This is smaller text.

Global Attribute

Small Tag support all the global attributes of HTML.


Event Attribute

Small Tag support all the event attributes of HTML.


Next Tutorial

We hope that this tutorial helped you develop better understanding of the concept of <small> tag in HTML.

Keep Learning : )

In the next tutorial, you'll learn about HTML <source> Tag.

- Related Topics