- Starting a New Paragraph
- Adding Author Contact Information
- Creating a Figure
- Specifying Time
- Marking Important and Emphasized Text
- Indicating a Citation or Reference
- Quoting Text
- Highlighting Text
- Explaining Abbreviations
- Defining a Term
- Creating Superscripts and Subscripts
- Noting Edits and Inaccurate Text
- Marking Up Code
- Using Preformatted Text
- Specifying Fine Print
- Creating a Line Break
- Creating Spans
- Other Elements
Specifying Fine Print
According to HTML5, small represents side comments such as fine print, which “typically features disclaimers, caveats, legal restrictions, or copyrights. Small print is also sometimes used for attribution or for satisfying licensing requirements.” small is intended for brief portions of inline text, not for text spanning multiple paragraphs or other elements ( and ).
The small element denotes brief legal notices in both instances shown. The second one is a copyright notice contained in a page-level footer, a common convention.
... <body> <p>Order now to receive free shipping.<small>(Some restrictions may apply.) </small>
</p> ... <footer> <p><small>© 2011 The Super Store. All Rights Reserved. </small>
</p> </footer> </body> </html>
The small element may render smaller than normal text in some browsers, but the visual size is immaterial to whether you should mark up your content with it.
To specify fine print
- Type <small>.
- Type the text that represents a legal disclaimer, note, attribution, and so on.
- Type </small>.