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 trialMark Kohner
1,121 PointsChallenge task 1/3 can't proceed; what am I missing? <a href="index.html"><nav></nav><ul></ul>
Challenge says create a navigation link and an unordered list without any list items or any links, after the link in the header.
<header>
<a href="index.html">
<nav>
<ul>
</ul>
</nav>
<h1>Nick Pettit</h1>
<h2>Designer</h2>
</a>
</header>
does not work, and
html <header>
<a href="index.html"></a>
<nav></nav>
<ul></ul>
is not working, I am not sure what else is required. IT is giving the error "make sure you put your nav element right after the link!"
2 Answers
Steve Hunter
57,712 PointsHi Mark,
Your header section would look like this:
<header>
<a href="index.html">
<h1>Nick Pettit</h1>
<h2>Designer</h2>
</a>
<nav>
<ul></ul>
</nav>
</header>
Here, I have added a nav
element after the link (the a
tag pairing) and included an unordered list inside that nav
with no list elements in it. Your code was correct, but it wasn't after the whole link tag; you had it inside the link.
I hope that helps.
Steve.
Mark Kohner
1,121 Pointsthank you!