Advertisement
❮ Previous: <html> Next: <iframe> ❯

<i>

HTML <i> (Italic) Tag

Example

<p>This text has been <i>italicized</i>.</p>

Try this code ❯

Meaning

The <i> element specifies that the contained text should be displayed in an italic typeface.

Version: HTML 2, 3.2, 4, 4.01, 5


Standard Syntax

<i>...</i>


Advertisement

Global Attributes

The <i> element also supports the Global Attributes in HTML.


Event Attributes

The <i> element also supports the Event Attributes in HTML.


By Default CSS Value(s)

Most of the browsers will display the <i> element with the following by default value(s)

i {
  font-style: italic;
}

Related Tags:

<a>,
<abbr>,
<b>,
<bdi>,
<bdo>,
<br>,
<cite>,
<code>,
<data>,
<dfn>,
<em>,
<kbd>,
<mark>,
<q>,
<rp>,
<rt>,
<ruby>,
<s>,
<samp>,
<small>,
<span>,
<strong>,
<sub>,
<sup>,
<time>,
<u>,
<var> and
<wbr>

❮ Previous: <html> Next: <iframe> ❯
Advertisement