To create small text, use the <small> tag in HTML. The HTML <small> tag makes the font size one size smaller.
Example
You can try to run the following code to create small text in HTML −
<!DOCTYPE html> <html> <head> <title>HTML small Tag</title> </head> <body> <h2>Tutorialspoint</h2> <p><small> Simply Easy Learning</small></p> </body> </html>