HTML

how to add Smaller Text


Reducing the size of text in HTML can be achieved using various methods, such as using CSS properties or HTML attributes.

The <small> tag in HTML is used to indicate smaller text, typically for fine print, legal disclaimers, copyright notices, and other similar content. It is a semantic tag that conveys meaning about the importance or significance of the enclosed text.

Here's an example of how you can use the <small> tag:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Small Text Example</title>
</head>
<body>
    <p>This is some regular text. <small>This is smaller text.</small></p>
</body>
</html>

In this example, the text "This is smaller text." is enclosed within the <small> tag, indicating that it should be rendered in a smaller font size compared to the surrounding text.

While the <small> tag is specifically designed to denote smaller text, it's important to note that its appearance can be modified using CSS if needed. However, using CSS directly for font size adjustments may offer more flexibility and control over styling.