html small Tag

In the html <small> tag is used to specify small text. Small text is a part of the html page that like this copy rights, legal restrictions and disclaimers.

Syntax:

<small>
   Small tag syntax
</small>

Example Code

<footer>
  <small> © Copyright 2011, Indian Web Hosting Center </small>
</footer>

Out Put:



© Copyright 2011, Indian Web Hosting Center

In the above example <small> tag has been added to copyrights inside of <footer> tag.





Content