HTML i Tag | HTML <i> Tag Tutorial By WDH

HTML i Tag


The <i> tag renders text in italic.

This can be used to display idioms, terminologies, ideas, and more.

Example

#

This <i> tag italicizes a single word in the text.

Van Gogh and Gauguin visited Montpellier in December 1888.

<article>
  <p>
    Van Gogh and Gauguin visited 
    <i>Montpellier</i> in December 1888.
  </p>
</article>

Try it live