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 Basics Structuring Your Content Structuring Content Challenge

Ryan Elizabeth Foulds
Ryan Elizabeth Foulds
5,133 Points

HTML Basics Challenge 1 of 4 too ambiguous.

Trying to complete this task and it looks right, but still getting a wrong answer notification.

index.html
<!DOCTYPE html>
<html>
  <head>
    <link href="styles.css" rel="stylesheet">
    <title>My Portfolio</title>
  </head>
  <body>
    <article>
      <nav>
        <ul>
          <li><a href="#">About</a></li>
          <li><a href="#">Work</a></li>
          <li><a href="#">Contact</a></li>            
        </ul>
      </nav>
      <h1>My Web Design &amp; Development Portfolio!</h1> 
      <p>A site featuring my latest work.</p>
    </article>

    <article>
      <h2>Welcome</h2> 
      <p>Fusce semper id ipsum sed scelerisque. Etiam nec elementum massa. Pellentesque tristique ex ac ipsum hendrerit, eget feugiat ante faucibus.</p>
      <nav>
        <ul>
          <li><a href="#">Recent project #1</a></li>
          <li><a href="#">Recent project #2</a></li>
          <li><a href="#">Recent project #3</a></li>     
        </ul>
      </nav>
    </article>

    <p>&copy; 2017 My Portfolio</p>
    <p>Follow me on <a href="#">Twitter</a>, <a href="#">Instagram</a> and <a href="#">Dribbble</a></p>
  </body>
</html>

4 Answers

Steven Parker
Steven Parker
230,995 Points

Did you skip one of the videos? :smirk:

I'm suspecting the "ambiguous" part you mention has to do with the terminology that ties into the videos.

The challenge says, "Place the ul, h1 and p elements at the top of the page inside an element that represents a group of introductory or navigational content." I see you have placed all 3 of those in an <article> element, and just the first one in a <nav> element.

But the "element that represents a group of introductory or navigational content" is the <header> element.

Ryan Elizabeth Foulds
Ryan Elizabeth Foulds
5,133 Points

Thanks so much for your help and condescension! Greatly appreciated!

Steven Parker
Steven Parker
230,995 Points

Glad to help. And no actual condescension intended ā€” it's just my offbeat sense of humor. I forgot to put a little smirky face there but I'll add it now (but I'm not entirely sure that clarifies it either!). But perhaps we are similar in that?

Happy coding!

Hi I tried different options for this test and I could not find an answer would anyone be able to help me?

Steven Parker
Steven Parker
230,995 Points

If the hints given here don't help, you might want to create your own question and share your actual code in it.

This quiz question angered me greatly - if someone is stuck on a quiz question , like I am, Treehouse should note which video should be reviewed again. I almost resigned, I don't have time nor do I want to guess,If I am screwing up state when I can get the info. I don't remember anything about header in the last video for it focused on Section, Article and Aside

Steven Parker
Steven Parker
230,995 Points

You can submit suggestions for video or other content improvements directly to the staff using the instructions on the Support page.

help me!!!!!!!!!!!!!!!!!!!!

Steven Parker
Steven Parker
230,995 Points

Try starting a new question using the "Get Help" button, which should automatically include your code and a link to the page.