Loading...
HTML <i> Tag

HTML <i> Tag

In this tutorial, we will learn about i tag in HTML with the help of examples.


<i> Tag

I tag <i> is used to display the text in italic.

Note : It doesn't render anything special except making the text italic.

Syntax

<i>........</i>

Example

<!DOCTYPE html>
<html>
  <head>
    <title>I Tag</title>
  </head>
  <body>
    <i>This is paragraph is written in italic.</i>
  </body>
</html>

Output

This is paragraph is written in italic.

Global Attribute

I Tag support all the global attributes of HTML.


Event Attribute

I Tag support all the event attributes of HTML.


Next Tutorial

We hope that this tutorial helped you develop better understanding of the concept of <i> tag in HTML.

Keep Learning : )

In the next tutorial, you'll learn about HTML <iframe> Tag.

- Related Topics