HTML Emphasized Formatting Code For Website - Learn About Website | DaddyFile

0

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>



Html Code Result:

This text is normal.
This text is emphasized.

Post a Comment

 
Top