HTML <em>

Anonymous contributor's avatar
Anonymous contributor
Published Jun 10, 2021Updated Apr 4, 2023

The <em> element represents text which is emphasized. Browsers will show the enclosed text in italics, by default.

  • Front-end engineers work closely with designers to make websites beautiful, functional, and fast.
    • Includes 34 Courses
    • With Professional Certification
    • Beginner Friendly.
      115 hours
  • Start at the beginning by learning HTML basics — an important foundation for building and editing web pages.
    • Beginner Friendly.
      7 hours

Syntax

<em><!-- Emphasized text goes here --></em>

Text is wrapped in opening and closing <em> tags. By default, <em> is an inline element, and will be shown in italics.

Example

<html>
<head> </head>
<body>
<!-- The words 'very important' will be emphasized -->
<p>
Here is some text, and this part is <em>very important</em>. I hope you
enjoy it.
</p>
</body>
</html>

Output of the example above for em tag

All contributors

Learn HTML on Codecademy

  • Front-end engineers work closely with designers to make websites beautiful, functional, and fast.
    • Includes 34 Courses
    • With Professional Certification
    • Beginner Friendly.
      115 hours
  • Start at the beginning by learning HTML basics — an important foundation for building and editing web pages.
    • Beginner Friendly.
      7 hours