HTML Tutorial
The tag is used to emphasize text within a document. It renders the enclosed text in italics.
The tag does not have any specific attributes.
<em>important</em>
will render "important" in italics.<em>This is a phrase</em>
will render "This is a phrase" in italics.Exploring the tag
<!DOCTYPE html>
<html>
<body>
<h1><em>Emphasis Tag Example</em></h1>
<p>Here's an important <em>note</em>:</p>
<p>Remember to <em>save</em> your changes.</p>
</body>
</html>
This example will display the following:
Here's an important note:
Remember to save your changes.