Summary -

In this topic, we described about the <small> tag along with detailed example.

Small text in HTML document. Small text is used to display the text as Small text (decrease the size). Small text represents the side comments.

Small text uses <small> tag. Any text in between <small>..</small> displays as small text. <small> element is nested element.

Syntax -

<small>.. text here.. </small>

Example -

<!DOCTYPE html>
<html>
	<head>
		<title>small text example.. </title>
	</head>
	<body>
		<h3>This is <small>Small</small> text</h3>
	</body>
</html>

Output -

This is Small text