Open In App

HTML <em> Tag

Last Updated : 18 Apr, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report

HTML <em> tag is used to emphasize text, typically rendering it in italics. It conveys importance or stress semantically and is widely employed for emphasis within paragraphs or sentences.

Note: The <em> tag in HTML supports both Global Attributes and Event Attributes, enabling versatile usage for emphasizing text content.

Syntax:

<em> Contents... </em>

HTML <em> tag Examples

Example: In this example, we use the <em> tag to render "Emphasized text content" in italics within the document structure.

html
<!DOCTYPE html>
<html>

<body>
    <h2>HTML em Tag</h2>
    <em>Emphasized text content</em>
</body>

</html>

Output:


HTML-em-Tag
HTML em Tag


Supported Browsers: The browsers supported by HTML <em> tag are listed below:


Next Article

Similar Reads