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 trialandres ramirez
Full Stack JavaScript Techdegree Student 3,951 PointsWhy is this task not functioning?
What am I missing under section > nav > ul> li> to pass test???
<!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">Portfolio</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section>
<nav>
<ul>
<li><img src="img/numbers-01.jpg" alt=""></li>
<li><img src="img/numbers-02.jpg" alt=""></li>
<li><img src="img/numbers-06.jpg" alt=""></li>
</ul>
</nav>
</section>
<footer>
<p>© 2013 Nick Pettit.</p>
</footer>
</body>
</html>
5 Answers
jerry bremser
3,941 Pointsdelete the <nav></nav> tags because its a list not a navigation.
jerry bremser
3,941 Pointswhat is it asking
jerry bremser
3,941 Pointsyou set it as nav but its not the nav
andres ramirez
Full Stack JavaScript Techdegree Student 3,951 PointsThanks for your response! Will try without the nav and see what happens...
andres ramirez
Full Stack JavaScript Techdegree Student 3,951 PointsSuccess :)
jerry bremser
3,941 Pointsthought so :) i overlooked it the first time. those sneaky tags tisk tisk. hey if you can, please rate my answer! im movin on up in the debugging world :,)
andres ramirez
Full Stack JavaScript Techdegree Student 3,951 Pointsandres ramirez
Full Stack JavaScript Techdegree Student 3,951 PointsPrompt and effective response, thank you!