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 trialkinte kellogg
530 Pointslooks like task one is no longer passing
oop task one is no longer passing. what does this mean it's killing me
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Nick Pettit</title>
</head>
<body>
<header>
<a href="index.html">
<nav>
<ul>
<li>portfolio</li>
<li>about</li>
<li>ccontact</li>
</ul>
</nav>
<h1>Nick Pettit</h1>
<h2>Designer</h2>
</a>
</header>
<section></section>
<footer>
<p>© 2013 Nick Pettit.</p>
</footer>
</body>
</html>
2 Answers
Nicholas Vogel
12,318 PointsIt could be that you spelled "contact" wrong in your <li>s
Jennifer Nordell
Treehouse TeacherHi there! Nicholas Vogel is correct. Your text in your list items will have to be spelled and capitalized correctly. However, there is another problem here which is causing the Task 1 is no longer passing issue.
The first task has this in the instructions:
Create a navigation element with an unordered list element after the link inside the header
The key portion here is aftter the link. Your code occurs inside the link. Remember the link is the anchor tag and it begins with <a>
and ends with </a>
. So all of your code should come between these two lines:
</a> <!-- this is the end of the link/anchor tag -->
<!-- your code should be here -->
</header>
I hope this helps, but please let me know if you're still stuck!