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

0

HTML Italic Formatting Explain

The HTML <i> element defines italic text, without any extra importance.



Html Code:

<!DOCTYPE html>
<html>
<body>

<p>This text is normal.</p>

<p><i>This text is italic.</i></p>

</body>
</html>




Html Code Result:

This text is normal.
This text is italic.

Post a Comment

 
Top