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

Christian Espinola
Christian Espinola
1,192 Points

i think there is a bug

it keeps telling me i was supposed to label the Portfolio link "index.html" and thats exactly how i have it, where might i be going 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>
         <ul>
           <li><a href=:"index.html"></a>Portfolio</li>
           <li><a href=:"about.html"></a>About</li>
           <li><a href=:"contact.html"></a>Contact</li>
         </ul>
        </nav>
    </header>
    <section></section>
    <footer>
      <p>&copy; 2013 Nick Pettit.</p>
    </footer>
  </body>
</html>

5 Answers

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,860 Points

Hey Christian,

You seem to have colons before the opening quote for the "index.html" in your <li> line with the href. Also the "about.html" and "contact.html"

I'm not sure why you have put colons there, but they do need to be deleted.

edited Also, the close <a> tags are misplaced... They need to go after the 'title' and right before the closing <li> tags.

Keep Coding! :) :dizzy:

Christian Espinola
Christian Espinola
1,192 Points

thats so weird, i don't remember seeing that, thank you so much

Jason Anders
Jason Anders
Treehouse Moderator 145,860 Points

Sorry, I missed the misplacement of the closing <a> tags. They need to go after the Link Title and right before the closing <li> tag...

<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>

Edited original answer to reflect this

Christian Espinola
Christian Espinola
1,192 Points

thank you so much, i love treehouse!