HTML <small> tag
HTML <small> tag : Definition
• The HTML <small> tag Displays text one size smaller than the surrounding text(Such as large to medium, medium to small, etc).
Html <small> tag example
<!DOCTYPE html>
<html>
<head>
<title>small Tag example</title>
</head>
<body>
<h2>small tag example</h2>
<p>This is normal font size.....
<small>This is smaller than previous...
<small>This is smallest.</small>
</small>
</p>
</body>
</html>
Output :
small tag example
This is normal font size..... This is smaller than previous... This is smallest.