(PCC)::[How-to-make-Italic-formatting-using-the-i-element-in-HTML]::[html]
<!DOCTYPE html> <html> <body> <p>This text is normal.</p> <p><i>This text is italic.</i></p> </body> </html>
This text is normal.
This text is italic.