Programming Code Center(PCC)
[HTML]

(PCC)::[How-to-make-Italic-formatting-using-the-i-element-in-HTML]::[html]

File Name : index.html

<!DOCTYPE html>
<html>
<body>

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

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

</body>
</html>

Output :

This text is normal.

This text is italic.