Tutorials

KodeKite Tools

HTML
Flexbox
SVG
Canvas
HTML Tutorial

More


HTML Small Element
Small Element

Small is a Formatting element used to make text small.

Syntax

<small>Content</small>

Or

<tag><small>Content</small></tag>


You can apply small element to any element and use any where within a HTML document.


Example

I am Small Text


Small is a pair tag and output of small element is small text like you can see in above example.


Practice Task

Open notepad or any other text editor, follow the following points.


  • Create one paragraph
  • Make it samll using <small> element

save file with name task.html or task.htm and then open it using any browser and see results.


Solution

I am small paragraph


Don't forget small is non empty element which means it always comes in pair.