HTML Italic Generator

Use the following HTML italic generator to create italic text. Simply select the text you want to make italic and click the I button. The code will be generated in the textbox adjacent to the text.

Also check out this Text Generator.

Replace this text with your own text. Select part of the text and click the "I" button to make it render in italics... (but be sure to read the explanation below...)

The <i> Element's New Purpose

The above generator uses the HTML <i> element to render the text in italics.

Note that, prior to HTML5 the <i> element was used to render text in italics, however, HTML5 has given a new meaning to this element.

As of HTML5, the purpose of this element is to specify text in an alternate voice or mood, or otherwise offset from the normal prose. Examples could include a taxonomic designation, a technical term, an idiomatic phrase from another language, transliteration, a thought, or a ship name in Western texts.

Therefore, the <i> tag should not be used to markup text in italics (this was OK in previous versions of HTML but not in HTML5). Style sheets should be used to style text without giving it any semantical meaning. To style text in italics, without conveying any semantical meaning, you should use the CSS font-style property.

Also, here are some other considerations:

Using Cascading Style Sheets (CSS)

As mentioned, if you simply want to render italics without conveying any semantic meaning, use the CSS font-style property.