<small> HTML Tag

In this article we will discuss about how to use small tag in HTML.
  • 1787

The small tag in HTML is used for specify the small text and it is denoted by <small> tag. It uses its own size to make the text smaller.

HTML Code:

<html>

<head>

    <title></title>

</head>

<body>

    Mahatma Gandhi In the attitude of silence the soul finds the path in a <u><small>clearer</small></u>

    light,<br> and what is <u><small>elusive</small></u> and deceptive resolves itself

    into <u><small>crystal</small></u> clearness.<br>

    Our life is a long and arduous quest after Truth.

</body>

</html>

Output:

Mahatma Gandhi In the attitude of silence the soul finds the path in a clearer light,
and what is
elusive and deceptive resolves itself into crystal clearness.
Our life is a long and arduous quest after Truth.

In the above output clearer,elusive,crystal are coming in small size.

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.