HTML Emphasized Formatting Explain
The HTML <em> element defines emphasized text, with added semantic importance.
Html Code:
<!DOCTYPE html>
<html>
<body>
<p>This text is normal.</p>
<p><em>This text is emphasized.</em></p>
</body>
</html>
Post a Comment