How to emphasize text in a document using HTML5 ? Last Updated : 29 May, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report 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> Emphasize text in an HTML document </title> </head> <body> <h1>GeeksforGeeks</h1> <h2> HTML5: How to emphasize text in an HTML document? </h2> <em>Emphasized text content</em> </body> </html> Output: Example 2: html <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title> HTML5: How to emphasize text in an HTML document? </title> </head> <body> <h1>GeeksForGeeks</h1> <h2> HTML5: How to emphasize text in an HTML document </h2> <strong> <em>HTML CSS Exercise</em> </strong> </body> </html> Output: Supported Browsers: Google Chrome Internet Explorer Firefox Opera Safari Comment More infoAdvertise with us Next Article How to create linear gradient text using HTML and CSS ? M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML HTML5 HTML-Misc Similar Reads How to render as emphasized text using HTML? The <em> tag in HTML is a phrase tag and is used to emphasize the text content. It is similar to <italic> tag. The main difference between these two tags is the <em> tag semantically emphasizes the important word or section of words while the <i> tag is just offset text conve 1 min read How to define important text using HTML5 ? 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> 1 min read How to define important text using HTML5 ? 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> 1 min read How to create linear gradient text using HTML and CSS ? The linear-gradient is used to create eye-catching text effects, particularly suitable for dark-themed websites or applications. This method involves filling text with linear-gradient color codes, making it look attractive and bold. Linear-gradient text effects are ideal for dark themes and provide 2 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 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 Like