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

what am i doing wrong here ?

i think this is correct but its not letting me pass can someone have alook please

Hey Philip,

Could you paste the code that you are using?

6 Answers

Hey Philip,

The code challenge is case sensitive.

Look at the .html files that you are referencing.

Additionally, you have a " < " after <section> This most likely isn't contributing to the errors that you are receiving but I'd remove it just in case.

<li><a href="index.html">Portfolio</a><li> <li><a href="About.html">About</a><li> <li><a href="Contact.html">Contact</a><li>

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Phil Cartlidge | Designer</title>
    </head>
  <body>
  <header>
    <a href="index.html">
    <h1>Phil Cartlidge</h1>
    <h2>Designer</h2>
      </a>
    <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>
    </nav>
    </header>
    <section><
    </section>
    <footer>
      <p>&copy; 2014 Phil Cartlidge.</p>

    </footer>

  </body>

</html>

I went ahead and formatted your code so that I could read it easier. I'm looking into the issue now.

did you get it ?

Link each of the three list items. Portfolio should go to “index.html”, About should go to “about.html”, and Contact should go to “contact.html”.

this is what is saying and its not working to let me through to the next level? thanks for your help by the way !

I got it now... seems silly now but thank you ...

Glad to hear that you have it working now! Coding can be tricky :) and sometimes you just need another pair of eyes to look at your code.