
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
How to use small formatting in HTML?
The <small> tag in HTML makes text font size smaller (one size smaller to the original font size) in the HTML document.
The HTML <small> tag is found inside the <body> tag. The <small> tag makes the text one size smaller.
Syntax
Following is the syntax for the <small> tag.
<small>The text…</small>
Example
Following is the example program for the <small> tag.
<!DOCTYPE html> <html> <body> <h1>Tutorials <small>point</small></h1> </body> </html>
Example
We can use <small> tag inside the HTML elements. Following is the example program for the <small> tag inside the <p> tag.
<!DOCTYPE html> <html> <head> </head> <body> <p>DLF stands for <small>Delhi Land and Finance.</small> <br> Delhi Land and Finance is one of the largest commercial real estate developer in India.</p> </body> </html>
Example
Following is the example program, uses CSS property to define smaller text in HTML. We can also use CSS property to define smaller text.
<!DOCTYPE html> <html> <head> <style> span.small{ font-size: smaller; } </style> </head> <body> <p> <span class="small">DLF stands for Delhi Land and Finance.</span></p> <p> Delhi Land and Finance is one of the largest commercial real estate developer in India.</p> </body> </html>
- Related Articles
- How to use Emphasized formatting in HTML?
- How to use small font in HTML?
- How to use the tag for keyboard input formatting in HTML?
- How to use formatting with printf() correctly in Java?
- HTML Text Formatting
- Explain HTML formatting in PowerShell?
- Create small text in HTML
- How do we do variable formatting using the tag in HTML?
- How to use blockquote in HTML?
- HTML DOM small object
- How do we do computer output formatting using the tag in HTML?
- How to use the tag in HTML?
- How to use the tag in HTML?
- How to use the tag in HTML?
- How to use autocomplete attribute in HTML?

Advertisements