HTML SMALL TAG
Run
<!doctype html>
<head>
   <title>Small Tag Example</title>
</head>
<body>
   <h1>Normal Text</h1>
   <p>HTML stands for Hypertext Markup Language.It is used to create static web pages </p>
   <p>CSS stands for Cascading Style sheets ;used for styling of HTML pages</p>
   <hr/>
   <h1>Small text</h1>
   <small>
      <p>HTML stands for Hypertext Markup Language.It is used to create static web pages </p>
      <p>CSS stands for Cascading Style sheets ;used for styling of HTML pages</p>
   </small>
</body>
</html>