Publish in HTML Tutorial el 25/05/2025 16:10
The <small> element is used to represent side-comments and small print, typically for disclaimers, caveats, legal restrictions, or copyright notices. It renders text one font size smaller than the parent element (from medium to small, or from large to medium).
While <small> makes text visually smaller, it's important to note that it doesn't reduce the semantic importance of the content. Screen readers will still read it at normal volume and with the same importance as surrounding text.
Here's how the basic <small> tag looks in HTML:
And here's how it renders:
This text will appear smaller than surrounding contentA common use of <small> is for copyright notices at the bottom of pages:
<small> is perfect for providing supplementary information about form fields:
You can nest <small> elements to make text progressively smaller:
Here's how you can use JavaScript to dynamically add small print to an element:
This example shows how to toggle the visibility of a <small> element:
The <small> element is supported by all browsers, including:
The <style> HTML element contains style information for a document, or part of a document. ...
The <strong> element is used to indicate that its content has strong importance, seriousnes...
The <span> element is an inline container used to mark up a part of a text or document. Unl...
The <source> element is used to specify multiple media resources for media elements like &l...
HTML <section> Element: The Complete Guide The <section> element is a semantic HTML ...
The <script> HTML element is used to embed or reference executable code, typically JavaScri...