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

Stephen Ng
Stephen Ng
5,124 Points

I am stuck on challenge 4 of forms

Challenge task 4 is asking to Add a paragraph with bold text. I used <p><b>This is bold text.</b></p> and it keeps telling Bummer!

6 Answers

This MDN article should be very helpful! :)

Tom Bedford
Tom Bedford
15,645 Points

What code are you using?

Stephen Ng
Stephen Ng
5,124 Points

I used: <div id="wrapper"> <ol> <li>Item One</li> <p><b>This is Bold text.</b></p> <li>Item Two</li> <li>Item Three</li> </ol> </div>

Thanks

Stephen Ng
Stephen Ng
5,124 Points

I used: ''' <div id="wrapper"> <h2>Shopping List</h2> <ol> <li>Item One</li> <p><b>This is Bold text.</b></p> <li>Item Two</li> <li>Item Three</li> </ol> </div> '''

Thanks

Stephen Ng
Stephen Ng
5,124 Points

Sorry, trying to use Markdown.

<p><b>This is Bold text.</b></p>
Stephen Ng
Stephen Ng
5,124 Points

Thanks Ryan, it worked. Just needed to use the strong vs. the bold element.