HTML em tag

Emphasized text is used to display the text as in emphasized text, with added semantic importance. Emphasized text uses <em> tag. <em> is also called as pharse tag.

Any text in between <em>..</em> displays as in Emphasized. <em> element is nested element.

Syntax -
<em>.. text here.. </em>
Example -
<!DOCTYPE html>
<html>
	<head>
		<title>Emphasized text example.. </title>
	</head>
	<body>
		<p>This is <em> Emphasized </em> text</p>
	</body>
</html>
Output -

This is Emphasized text