How to set smaller text using HTML? Last Updated : 02 Jul, 2024 Comments Improve Suggest changes Like Article Like Report To create smaller text in HTML5, use the <small> tag. This element is designed specifically to reduce font size, providing a straightforward method to display text in a smaller font within web documents.Syntax:<small> Content... </small>Example: The following is the explanation of how to set smaller text using HTML5. html <!DOCTYPE html> <html> <head> <title> How to set smaller text using HTML5 ? </title> <style> body { text-align: center; } h1 { color: green; } </style> </head> <body> <h2> HTML5: How to define smaller text? </h2> <small> Welcome to GeeksforGeeks! </small> </body> </html> Output:OutputSupported BrowsersGoogle ChromeFirefoxOperaSafari Comment More infoAdvertise with us Next Article How to set smaller text using HTML? M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML HTML5 HTML-Misc Similar Reads How to Style Text in HTML? The HTML style attribute adds styles to an element, such as color, font, size, and more. Here, we are going to learn how to style Text in HTML.These are the following methods:Table of ContentUsing CSS StylesUsing Element for StylingUsing CSS StylesThe <b> tag makes text bold, while <strong 2 min read How to define preformatted text using HTML? To define a preformatted text in HTML use the <pre> tag in the document. It is used to define the block of preformatted text that preserves the text spaces, line breaks, tabs, and other formatting characters that are ignored by web browsers. Text in the pre-tag is displayed in a fixed-width fo 1 min read How to Insert Spaces/Tabs in Text using HTML and CSS? When building web pages, controlling the spacing between elements and text is essential for creating visually appealing and well-structured content. HTML and CSS offer several ways to insert spaces and tabs in text. While HTML provides basic methods for adding spaces, CSS gives more control over lay 4 min read How to set text color & font style in HTML ? In this article, we will learn how to set text color & font style in HTML. The <style> tag in HTML helps us to set the text color & font style in HTML. This modification includes changing font size, font family, font color, etc. Not only the text but also we can change the style of a b 2 min read How to set the size of textarea in HTML ? In this article, we will discuss how to set the size of the textarea in HTML. The <textarea> tag in HTML defines a multi-line plain-text editing control. A text space will hold an infinite range of characters, and therefore the text renders in a set-width font (usually Courier). In the below c 2 min read Like