The <small>
tag in HTML is used to represent side comments, disclaimers, or fine print — typically rendered in smaller text than the surrounding content. It’s a semantic way to de-emphasize content while still keeping it readable and meaningful.
📌 What Is the <small>
Tag?
<small>
stands for less prominent or secondary text.- It is an inline semantic tag, not just a stylistic one.
- Often used for legal disclaimers, copyright notes, or footnotes.
✅ Basic Syntax
<p>This product is free. <small>Terms and conditions apply.</small></p>
Result:
This product is free. <small>Terms and conditions apply.</small>
🧪 Example 1: Footer Copyright
<footer>
<p><small>© 2025 Alex Web Studio. All rights reserved.</small></p>
</footer>
🧪 Example 2: Medical Disclaimer
<p>This supplement helps support energy levels. <small>This product is not intended to diagnose or treat any disease.</small></p>
🎨 Default Styling
By default, most browsers render <small>
as:
- Font size: ~80% of the parent element
- Style: Inherits other styles (e.g., font-family, color)
You can customize it with CSS:
small {
font-size: 0.8em;
color: #777;
}
💡 Common Use Cases
Use Case | Example |
---|---|
Disclaimers | Batteries not included. |
Legal text | All trademarks belong to their owners. |
Copyright info | © 2025 Your Company |
Footnotes or notes | 1. Limited to stock availability. |
⚙️ Best Practices
- ✅ Use
<small>
for semantically minor text, not just to shrink things. - ❌ Don’t use
<small>
to replace proper headings or bold content. - ✅ Use it inside other text elements like
<p>
,<footer>
, or<div>
.
🔁 <small>
vs Similar Tags
Tag | Purpose |
---|---|
<small> | Less important (fine print) text |
<sub> | Subscript text (e.g., H₂O) |
<sup> | Superscript text (e.g., 5²) |
<span> | Generic inline container (no meaning) |
🏁 Summary
The <small>
tag is a simple but important semantic element that communicates de-emphasized content — often used for fine print and legal disclaimers.