How to define important text using HTML5 ? Last Updated : 27 May, 2020 Comments Improve Suggest changes Like Article Like Report In this article, we define an important text by using the <strong> tag in HTML. It is the parsed tag and used to show the importance of the text. It reflects the text as bold. Syntax: <strong> Contents... </strong> Example 1: html <!DOCTYPE html> <html> <head> <title> How to define important text in HTML? </title> <style> body { text-align: center; } h1 { color: green; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2> How to define important text using HTML5? </h2> <strong> Welcome to GeeksforGeeks! </strong> </body> </html> Output: Example 2: html <!DOCTYPE html> <html> <head> <title> How to define important text in HTML? </title> <style> body { text-align: center; } h1 { color: green; } .gfg { font-weight: bold; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2 class="gfg"> How to define important text using HTML5? </h2> <div class="gfg"> Welcome to GeeksforGeeks! </div> </body> </html> Output: Supported Browsers: Google Chrome Internet Explorer Firefox Opera Safari Comment More infoAdvertise with us Next Article How to define important text using HTML5 ? M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML HTML5 HTML-Questions Similar Reads How to Define Superscripted Text using HTML? Superscript text is used for footnotes, mathematical exponents, and other notations. To define superscripted text in HTML5, use the <sup> tag. This tag adds superscript text to your HTML document, displaying it half a character above the normal line and often in a smaller font. Syntax<sup 1 min read How to define marked/highlighted text using HTML? To define highlighted or marked text in HTML5, the <mark> tag is employed. It effectively highlights specific text within a paragraph, offering a straightforward way to visually emphasize content. Introduced in HTML5, the `<mark>` tag enhances readability and focus within web content.Syn 1 min read How to emphasize text in a document using HTML5 ? In this article, we will emphasize the text in an HTML document by using the <em> element in the document. It is a phrase tag and used to emphasize the text content. Syntax: <em> Contents... </em> Example 1: html <!DOCTYPE html> <html> <head> <title> Emphasi 1 min read How to define style information of a document using HTML5 ? In this Article, we define style information for a document by using the <style> element in the document. It is used to change our text, viewed on the page. This change includes changing font-size, font-family, font-color, etc. Not only the texts but you can also change the style of a body or 1 min read How to define terms with HTML ? In this article, we will see how to define the terms with HTML. HTML facilitates us with some ways to define or describe the text so that users can get the exact meaning or message the developer wanted to deliver. A description list is a list of terms, with a description of each term. Lists in HTML 3 min read Like