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 trialStephen Ng
5,124 PointsI 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
Ryan Carson
23,287 PointsThis MDN article should be very helpful! :)
Tom Bedford
15,645 PointsWhat code are you using?
Stephen Ng
5,124 PointsI 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
5,124 PointsI 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
5,124 PointsSorry, trying to use Markdown.
<p><b>This is Bold text.</b></p>
Stephen Ng
5,124 PointsThanks Ryan, it worked. Just needed to use the strong vs. the bold element.