<em>

The HTML <em> element highlights text for emphasis, usually rendered in italics, to suggest importance or a shift in meaning or tone.

<em> Tag

The <em> tag is used to emphasize text, with most browsers displaying it in italics. Unlike the <i> tag, which also italicizes text, <em> conveys meaning by indicating emphasis rather than just visual styling.

Syntax

index.html
<em>Emphasized text</em>

<em> Demo

The em element

You have to hurry up!

We cannot live like this.

index.html
<h1>The em element</h1>
<p>You <em>have</em> to hurry up!</p>
<p>We <em>cannot</em> live like this.</p>

Definition and Usage

The <em> tag is used to mark text for emphasis, which is visually represented in italics.

Screen readers recognize the <em> tag and adjust pronunciation to highlight the emphasized text with verbal stress.

The <em> tag is useful for emphasizing key information, making content clearer and more accessible.

Conclusion

The <em> tag provides semantic emphasis, helping both visually and audibly highlight important text. Unlike the <i> tag, it conveys meaning beyond just appearance, making it beneficial for accessibility and readability in web content.