html tutorial - Small <small> tag in HTML - html5 - html code - html form



small tag

Learn html - html tutorial - small tag - html examples - html programs

  • The <small> tag is used to show the smaller text in a document.
  • Small tag is start with <small> tag and end with</small> tag.
  • The small tag will also support both Global Attribute and Event attribute.
  • <small> tag belongs to Flow content, and Phrasing content category.

Syntax for <small> tag:

<small>content</small>

Sample Coding for <small> tag:

Tryit<!DOCTYPE html>
<html >
    <head>
        <title>Wikitechy small tag</title>
    </head>
    <body>
        <h3>Learn HTML in wikitechy.com</h3> 
        <h3><small>Learn CSS in wikitechy.com</small></h3>
    </body>
</html>

Code Explanation for <small> tag:

code explanation for <small> tag

  1. <small> tag is used to show the text in smaller size.

Sample Output of <small> tag:

output for <small> tag

  1. The text “Learn CSS in wikitechy.com” will be displayed in smaller font size.

Browser Support for <small> tag:

Yes Yes Yes Yes Yes

Related Searches to small tag in html