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

Add a paragraph tag challenge 4 of 8

I believe I have this right but it's not letting me pass. here's my code:

<!DOCTYPE html> <html> <head> <title>HTML Mastery Challenge</title> </head> <body> <h1>HTML Mastery Challenge</h1>

<!-- Write your code below -->

<div> <h2>Shopping List</h2> <ol> <li>One</li> <li>Two</li> <li>Three</li> </ol> <p><b>Bold text</b></p> </div>

</body> </html>

2 Answers

Challenge task 4 of 8

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

Add a <p> That has some text </p> > . <strong> Inside of it bolded ></strong> . this is equal=<p><strong> That has some text </strong></p>

the is this: <!DOCTYPE html> <html> <head> <title>HTML Mastery Challenge</title> </head> <body> <h1>HTML Mastery Challenge</h1>

<!-- Write your code below -->

<div>
 <h2>Shopping List</h2>

 <ol>
      <li>Items A</li>
      <li>Items B</li>
      <li>Items C</li>
 </ol>

</div>

 <p><strong> Add a paragraph tag that has some text inside of it bolded.</strong></p>

</body> </html>

Volker Otto
Volker Otto
7,582 Points

I think you should wrap all of your code in ``` so it gets displayed as code! Cant really see what you wrote otherwise.