vote up 1 vote down star

I don't understand how to do this!

flag
2  
I highly doubt a homework assignment is to find out how to italicize text in HTML. This is more likely someone just learning the basics. – Paolo Bergantino Jun 3 at 0:38

5 Answers

vote up 17 vote down check

The better way to emphasize text nowadays is using the <em> tag:

<em>My Text</em>

But if you just need to show something italicized that is not semantically an "emphasis", it is perfectly fine to use the <i> tag, which is ancient but still alive:

<i>My Text</i>

Or if you have a particular element.class combination you want to show italicized:

<span class='author'>Paolo Bergantino</span>

With the style:

span.author { font-style: italic; }

More: HTML - Italic(s)

link|flag
8  
Technically only <i> actually ensures italic, although that's "presentation markup" and mildly deprecated. <em> just means emphasis, and while most browsers' default stylesheets show that as italic, this is by no means enforced. (Just so my comment isn't taken out of context, I'm vastly in favour of <em> instead of <i>.) – Chris Jester-Young Jun 3 at 0:33
2  
I agree with Chris. Really, we need to know /why/ the OP wants italics. Do they just want the font style? If so, <em> is no better than <i>, and <span style="..."> is probably the best. If they want emphasis, then <em> is correct. If they want formatting for a published work, maybe <cite> would work best. Or it's a quotation, and they should use <q>. Ok, I'm out of examples. – Tom Jun 3 at 1:15
the <i> tag is depreciated because it's not semantic. It's best to use <em>. – Matthew James Taylor Jun 3 at 2:14
5  
The <i> tag is not deprecated (check the HTML spec). It's perfectly valid to use in situations where italics has a meaning that isn't emphasis. For example: Several <i>de facto</i> English-speaking countries have no <i>de jure</i> official national language. – Rene Saarsoo Jun 3 at 3:27
As another option to be added to Chris', you could use the <em> tag for emphasis, and then add em { font-style: italic; } in your stylesheet to ensure that it renders italic - that is, if you want both the emphasis and the italic style this is the way to go. – Tomas Lycken Jun 4 at 11:41
vote up 1 vote down

Both <em> and <i> work, but <em> is considered the "correct" way, as the <i> tag just means "italic", but the <em> tag means "emphasis" - which refers to the meaning of the content, not just how to display it. So screen reading software, for example, knows how to pronounce "emphasis" but not "italics".

So, do something like this:

<p>This is normal text. <em>This is in italics.</em> This is back to normal. </p>

(Of course, you can still use <i> if you really just mean italic.)

(Or, you can really go crazy and add "font-style:italic" to the css class of the particular piece of text in question)

link|flag
1  
Where does this "<i> is deprecated" misconception come from? I guess nobody reads specs any more: w3.org/TR/html4/… – Rene Saarsoo Jun 3 at 3:46
Well I'll be damned - you know what? You're absolutely right. Lots of people say it is, but the spec says it isn't. Answer corrected. Thanks, Rene. – Electrons_Ahoy Jun 3 at 6:27
vote up -1 vote down

Depending on the DOCTYPE you use, you can not.

If you use HTML 4.01 then you can use:

<I>Foo bar</I>

If you use xhtml 1.0 then, you'd rather use CSS:

  • xhtml
<p class="italic">Foo Bar</p>
  • css
.italic {
    font-style: italic;
}

Useful link: Semantic.

Note: < em > tag is used to provide 'emphasis'. Italic is just a way to show it when reading.

link|flag
<p class="italic"> has no more semantics than <i> (fonts, and therefore font-related CSS attributes are meaningless to nonvisual representations). <em> has meaning, independent of the method of representation. – Tom Jun 3 at 0:57
1  
XHTML 1.0, by the way, is just a reformulation of HTML 4.01 in XML. And they both allow <i>. w3.org/TR/xhtml1 – Rene Saarsoo Jun 3 at 3:38
Confusing the difference between Transitional and Strict with the difference between HTML and XHTML is unfortunately common. The i element appears in all versions of HTML 4.01 and XHTML 1.0 though. – David Dorward Jun 3 at 10:01
Indeed. But best practices tend to don't allow mixing content and presentation. And it is the purpose of <i> just about presentation. Even if it's allowed. I was insisting on this. – bgy Jun 3 at 10:45
Are you suggesting that using HTML (as opposed to XHTML which has to be served as text/html so it works in IE) means you aren't following best practises? And if so, that if you don't follow one best practise, then there is no reason to follow any others? (and if you do follow one then you should follow all others?) – David Dorward Jun 3 at 13:54
vote up 9 vote down

There are a couple of ways to do this, depending on why you're doing it:

For emphasis When emphasizing something, you should use the <em> tag as this will be correctly interpreted as emphasis by screen readers etc.

Fore style purposes only If you only want italic text for style purposes, for example on a whole paragraph or the entire page, you're not really looking for emphasis so the <em> tag is wrong. Instead, you could do one of two:

  • Style with css (better): add a font-style: italic; to the css class of the element you want to style
  • Style with html (not so good, but it works and it's easy): encapsulate the italic text in an <i> tag.
link|flag
3  
YES! +1 for not slavishly replacing all italics with <em>! – Tom Jun 3 at 0:57
vote up -1 vote down
another <span style="font-style: italic;">simple</span> answer
link|flag
Avoid inline style. Avoid span when a better element exists (if one does depends on context). – David Dorward Jun 3 at 10:02
Opinion, opinion... it's amazing how many features languages make available to make our lives easier that by some are considered taboo, dirty, and wrong. Who needs to spend time defining a style sheet when all you want is a simple text effect? I define style sheets when inline style starts to become tedious and repetitive. Language should be a tool, not a burden. – Matthew Jun 3 at 18:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.