HTML <small> Tag Tutorial - Usage, Syntax,
Attributes and Example

calender-iconPublished: 11 May 2025

clock-icon5-min read




Table of Contents

INTRODUCTION

The HTML <small> element represents side comments and small prints. Small print typically features disclaimers, caveats, legal restrictions, or copyrights. Small print is also occasionally used for giving credit or fulfilling licensing requirements.

Display: By default, the text is shown by browsers with one font-size smaller than the surrounding text (for example: medium to small). The Keywords available in CSS for Font-size property are listed below

  • xxx-large
  • xx-large
  • x-large
  • large
  • medium
  • small
  • x-small
  • xx-small

The HTML small element is meant for brief portions of text and should not be used for lengthy content such as multiple paragraphs, lists, or entire sections. For example, a webpage displaying terms of use would not be an appropriate use case for the <small> element.

Common use cases are as follows.

  • copyrights
  • side-comments
  • legal text or legal restrictions
  • disclaimers
  • caveats - a warning which mentions conditions, or limitations.

Example:


<p> 
Learning Studio is a comprehensive online learning platform that offers a wide range of courses and tutorials on web development technologies. The platform provides detailed explanations of programming concepts, accompanied by practical code snippets and examples. The platform also features a comprehensive cheat sheet of programming concepts and formulas for quick reference.
</p>  
<small>
© Copyright 2025 by www.encryptionakademy.com. All rights reserved. 
</small> 

Learning Studio is a comprehensive online learning platform that offers a wide range of courses and tutorials on web development technologies. The platform provides detailed explanations of programming concepts, accompanied by practical code snippets and examples. The platform also features a comprehensive cheat sheet of programming concepts and formulas for quick reference.

© Copyright 2025 by www.encryptionakademy.com. All rights reserved.


Tag Omission

The HTML <small> element must have both start tag and end tag.

ATTRIBUTES

The <small> element only has global attributes.



Frequently Asked Questions (FAQ)

Is it valid to use HTML small tag inside a heading elements like h1, h2, h3?
Yes, a small tag can be used inside an HTML5 heading element like h1, h2, h3 etc. This usage is valid according to HTML5 specifications, as headings (h1 to h6) can contain phrasing content, and small is phrasing content.