Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML HTML Basics Images, Text and Links Text Level Elements Challenge

Malcolm Stretten
Malcolm Stretten
3,814 Points

shut that bloody voice up!

I just did it again with exactly the SAME answer and it passed it! Then I did it again and it failed it

index.html
<!DOCTYPE html> 
<html>
  <head>
    <title>HTML Text</title>
  </head>
  <body>
    <p>Mike's favorite course is <i>HTML Basics</i></p>
    <p>
      <strong>Mike T. Frog</strong><br>
      100 Lilypad Way<br>
      Portland, OR 97227
    </p>
  </body>
</html>

3 Answers

The tag you will want to use is <em>

Here is a link to understand when to use <em> or <i>

Steven Parker
Steven Parker
229,732 Points

I'm not sure why this would pass. The element introduced in the video "to add emphasis" is not <i>.

See my answer to your other question for more information.

Malcolm Stretten
Malcolm Stretten
3,814 Points

But <i> IS a legitimate tag. I've used it for ages and when I look at the visual rendition in the training video, sure enough it changes the emphasised text to italics.

Steven Parker
Steven Parker
229,732 Points

I don't think anyone would disagree that it's a legitimate tag, or that it typically displays italics. But the challenge is asking specifically for the tag associated with emphasis, and <em> is the one introduced for that purpose in the video.