<small> - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:small

Introduction

The small element marks fine print for disclaimers and clarifications.

The small Element summary

Item Value
Element small
Local AttributesNone
Tag Style Start and end tag required
New in HTML5No
Changes in HTML5 HTML5 small element has the semantic meaning

Style Convention

small {
   font-size: smaller;
}

The following table shows the small element in use.

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
   <head> 
      <title>Example</title> 
   </head> 
   <body>
       This is a 
      <small>test</small>
      .  <!--   ww w . j  ava  2s  .co  m-->
   </body>
</html>

Related Tutorials