Html italic tag: It adds italic style to the texts in between the tags.
Syntax of Html italic tag
<i>text.</i>
Html italic tag
Example
<title>Title</title> <p>Without italic Tag : This is paragraph without italic texts.</p> <p><i>Italic Tag : This is paragraph with italic texts.</i></p> |
Output :
Html Emphasized tag
Example
<title>Title</title> <p>Without Emphasized Tag : This is paragraph without Emphasized texts.</p> <p><em>Emphasized Tag : This is paragraph with Emphasized texts.</em></p> |