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

sick of bummer

i put the word Portfolio in just as it says and its not correct can some please tell what is up

Alan Johnson
Alan Johnson
7,625 Points

Can you update your question here to include the source code you've entered? That'll help us troubleshoot it.

3 Answers

Matthew Shettler
Matthew Shettler
8,819 Points

Did you wrap it in <li> tags? Did you also include About and Contact list items?

<li>Portfolio</li>
...
Blake Leal
Blake Leal
6,237 Points

Matthew Shettler is correct. You must wrap your < ul> (unordered list) in < li> (list item) tags.

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

            ```

thanks a lot it helped