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 How to Make a Website Creating HTML Content Create Navigation with Lists

Quade Waerea
Quade Waerea
479 Points

Task One had completed this time.. Task Two isn't? It says to list Portfolio, About and Contact, apparently I haven't..

So I had completed the first step to this, and it was all correct which was nice.

The second challenge question though, prompting for me to add 'Portfolio', 'About' and 'Contact', which I did, is saying that I'm missing out on 'Portfolio', and I'm guessing it's going to say it for every single one of them.. I have no idea what is wrong..

index.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Nick Pettit</title>
  </head>
  <body>
    <header>
      <a href="index.html">
        <h1>Nick Pettit</h1>
        <h2>Designer</h2>
      </a>
      <nav>
        <li>Portfolio</li>
        <li>About</li>
        <li>Contact</li>
        <ul></ul>
      </nav> 
    </header>
    <section></section>
    <footer>
      <p>&copy; 2013 Nick Pettit.</p>
    </footer>
  </body>
</html>

2 Answers

Katherine Marino
Katherine Marino
3,286 Points

You need to nest your list items (<li>) inside of the unordered list <ul> tags.

<nav>
    <ul>
        <li>Portfolio</li>
        <li>About</li>
        <li>Contact</li>
    </ul> 
</nav> 

You have your <ul> tags after the <li> tags. :)

rydavim
rydavim
18,813 Points

Looks like your list items just aren't inside your unordered list.

<li>Portfolio</li>  <!-- Put these three items... -->
<li>About</li>
<li>Contact</li>

<ul>
  <!-- ...in here. -->
</ul>

Remember that <li> tags are always nested inside <ul> or <ol> tags. That should do it! Happy coding!