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