HTML Tag Reference - HTML tag <i>








This <i> element causes enclosed text to be displayed in an italic font.

Browser compatibility

<i> Yes Yes Yes Yes Yes

What's new in HTML5

None.

Global Attributes

The <i> tag supports the Global Attributes in HTML.

Event Attributes

The <i> tag supports the Event Attributes in HTML.

Default CSS Settings

i { 
    font-style: italic;
}




Example

A demo showing how to use <i> tag.

<html>
<body>
     <p>
          This formulation is <i>new</i> and <i>improved</i>.
     </p>
</body>
</html>

Click to view the demo