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 trialMalcolm Stretten
3,814 Pointsshut 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
<!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
KRIS NIKOLAISEN
54,971 PointsThe tag you will want to use is <em>
Here is a link to understand when to use <em> or <i>
Steven Parker
231,236 PointsI'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
3,814 PointsBut <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
231,236 PointsI 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.