Italics letters in HTML

In HTML <i> element tag defines a part of a text in an alternate voice or mood. The content inside is typically displayed in italic.


Input:-

<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.

HOME/BACK

Comments

Popular posts from this blog

Keywords in C Programming

Definition of C Language

Data Types in C Programming