curriculum/challenges/english/blocks/top-working-with-text/637f4e6e72c65bc8e73dfe2a.md
The em element makes text italic. It also semantically places emphasis on the text, which again may affect things like screen readers. To define an emphasized element you wrap text content in an <em> tag.
To use em on its own:
Again, like the strong element, you will find yourself mostly using the em element with other text elements:
What element should you use to make text italicized to add emphasis?
<strong>This is an italic message</strong>
<em>This is an italic message</em>
<italic>This is an italic message</italic>
2