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 trialdaisy rivas
1,203 Pointsim one the 3rd step but oi need some help dont understand what it is trying to tell me.
ayudame
<!DOCTYPE html>
<html>
<head>
<ul><nav><meta charset="utf-8"><nav><ul>
<title>Nick Pettit</title>
</head>
<body>
<header>
<nav><ul><a href="index.html"><nav><ul>
<h1>Nick Pettit</h1>
<h2>Designer</h2>
</a>
<ul>
<nav>
<li><a herf="index.html">Portfolio</a></li>
<li><a herf="About.html">About</a></li>
<li><a herf="Contact.html">Contact</a></li>
</nav>
</ul>
</header>
<section></section>
<footer>
<nav><ul><p>© 2013 Nick Pettit.</p><nav><ul>
</footer>
</body>
</html>
1 Answer
Rich Bagley
25,869 PointsHi Daisy,
Looks as though you already have it sorted apart from a typo.
herf should be href, e.g.
<li><a href="index.html">Portfolio</a></li>
Oh, and you may need to check the casing of about.html and contact.html.
Hope that helps :)
-Rich