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

unable to move on to next Task :(

Hey Guys...

Pls help with this issue as Im un able to move on with the next task.

Thanks

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

    <div>
      <h2>Shopping List</h2>
      <p>This is a <b>paragraph</b></p>
      <ol>
        <li></li>
        <li></li>
        <li></li>
      </ol>
    </div>


  </body>
</html>

2 Answers

Kristopher Van Sant
PLUS
Kristopher Van Sant
Courses Plus Student 18,830 Points

Hey there! It looks like you're stuck on challenge task number 4? You've used the

``` tags to make the text bold however it's looking for something else. The hint says "Remember, being bold is a strong thing to do."  The main hint here being the word strong. So instead of using 

<b></b>

 to make your text bold, you want to use

<strong></strong>

You are missing the

< meta charset="utf-8">

You are also missing the

<link rel="stylesheet" href="css/main.css">

as well as the header.

I am not sure what code challenge you are on though and what they are looking for.

Good luck!