HTML <em> tag
HTML <em> tag : Definition
• The HTML <em> tag is used to emphasis a text within a sentence or phrase.
• It gives semantic meaning to the text contained within it and by default renders in the italic form on the browser but it cand be modified using CSS property
<em> tag example :
<!DOCTYPE html>
<html>
<head>
<title>
HTML em tag example</title>
</head>
<body>
<h1>HTML em tag example</h1>
<p>This is normal text content.</p>
<em>This is emphasized text content.</em>
</body>
</html>
OUTPUT :
HTML em tag example
This is normal text content.
This is emphasized text content.