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

code not working

my nav element IS right after the link:

 <header>
      <a href="index.html">
        <nav>
        </nav>
        <h1>Nick Pettit</h1>
        <h2>Designer</h2>
      </a>
    </header>

and i keep getting an error message saying its not. Please advise!!!

Stone Preston
Stone Preston
42,016 Points

code does not show up in the forum well (html code usually wont show up at all) unless you format it using markdown. There is a markdown cheatsheet in the bottom right of the text box, or you can watch the tips for asking questions video thats on the right side of this page for a walkthrough on formatting code

1 Answer

Stone Preston
Stone Preston
42,016 Points

your nav element IS INSIDE of the link, not after it. You also forgot to add the unordered list inside the nav. you need to move your nav and unordered list after the closing </a> tag

<header>
      <a href="index.html">
        <h1>Nick Pettit</h1>
        <h2>Designer</h2>
      </a>
      <!-- This is where your nav and list need to go, after the link -->
    </header>

thank you so much!!