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

Natalie Raketic
Natalie Raketic
691 Points

Error says a href is not linking to right link, but it is.

The error says the Portfolio should link to "index.html". My code is linking to the correct file, so I don't know what is going on in my code to give it that error.

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

2 Answers

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hey Natalie,

You have all the correct elements, just not quite in the right places. To be honest, I'm not sure why Task one and two passed, which is what is causing the obvious confusion as to why Task three isn't passing.

The 1st task asks for a

navigation element with an unordered list element after the link inside the header.

You have the element and the list, but you have it inside the link element instead of after the link element. The opening <nav> and subsequent code needs to go after the closing </a> tag for the link.

Like I said, everything you have is correct, just misplaced. What I would do, is reset the code and start over fresh, this time just starting the <nav> after the </a>.

Keep Coding! :) :dizzy:

Natalie Raketic
Natalie Raketic
691 Points

Ah that makes sense. Easy enough fix. Thanks for the reply!

Hi Natalie,

The instructions say to put the nav element after the link inside the header. You've placed it inside the link.