This <em> element causes text to be rendered in italics. It can thus give emphasis to particular words or phrases.
<em> |
Yes | Yes | Yes | Yes | Yes |
None.
The <em> tag supports the Global Attributes in HTML.
The <em> tag supports the Event Attributes in HTML.
em { font-style: italic; }
A demo showing how to use <em> tag.
<html>
<body>
<p>
The words to <em>emphasize</em>
are placed inside the <em>em</em>
element.
</p>
</body>
</html>