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

Dont know what your asking. tast 3of3

I linked the three list items to the html pages as I thought It should but the challenge keep telling me to go back to stage 2.

Could you show us your code so we can see where the error may be and help you pass this question. To embed code in the forum use the MarkDown Cheatsheet at the bottom right of the comment box :)

3 Answers

Project how to create a web site; 2nd stage creating navigation with lists. 3rd question I checked the form and every body is having problems with it. I think there is a bug

The question says 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”. So the code below is how you add the links inside the LI and around the name of the links.

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

There is no bug as I just checked the above code works to pass the quiz.

yes thats what I put in. the code is good. But what I am saying the question 1 was good 2 was good 3 the code on top said go back to question 2. I will go through it again to see if I can record it and post the code. I am still new to the web site and not sure how to post code. Thank you for your help

Andrew Rohlic :)