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 Forms HTML Mastery

HTML code challenge create a paragraph with bold text

Can't get through this code challenge task in my HTML lesson.

Task: Add a paragraph tag that has some text inside of it bolded.

My answer: <p><b>This is some bold text.</b></p>

apparently my answer is wrong according to this challenge.

2 Answers

Kevin Kenger
Kevin Kenger
32,834 Points

Hey Anthony, did you try adding a strong tag?

It would look something like this:

<p><strong>This is some bold text.</strong></p>

Hi Kevin,

That totally works, thank you! Can't believe I missed that one.

-Anthony

Kevin Kenger
Kevin Kenger
32,834 Points

My pleasure :) It's always the small things like that that are so easy to space on.