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

element that displays text in italics

not sure which element im missing for the italics to add emphasis to words "html basics"?

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

3 Answers

Agnes Demes
Agnes Demes
6,613 Points

Pleasure, It is great practice for me too to look at other people's code.

Agnes Demes
Agnes Demes
6,613 Points

Hi there, to add italics you can use the <em></em> or the <i></i> tags within the paragraph eg <p> this is the normal <i> Italics</i> and back to normal</p> hope this helps

thank you again.

yes ,thank you it actually hit me a couple miutes ago,nailed it. thank you for your time.