Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Harris Anastopoulos
249 PointsWhere's the mistake? i get the error "The portfolio list item should link to "index.html".
'''html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Nick Pettit</title> </head> <body> <header> <a href="index.html"> <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> <h1>Nick Pettit</h1> <h2>Designer</h2> </a> </header> <section></section> <footer> <p>© 2013 Nick Pettit.</p> </footer> </body> </html> ''' Sorry but i don't find any mistakes here, yet i cannot move on. p.s forgive my english since it's not my mother tongue.
3 Answers

Jason Anello
Courses Plus Student 94,596 PointsHi Harris,
You have placed the nav
element inside the link. The challenge wants you to put it after the link that's around the h1
and h2
It should be inside the header
but after the already existing closing </a>

Harris Anastopoulos
249 Points<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Nick Pettit</title>
</head>
<body>
<header>
<a href="index.html">
<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>
<h1>Nick Pettit</h1>
<h2>Designer</h2>
</a>
</header>
<section></section>
<footer>
<p>© 2013 Nick Pettit.</p>
</footer>
</body>
</html>

Harris Anastopoulos
249 Points"The portfolio list item should link to "index.html" though i think it is. what's the mistake and i cannot continue? Thank you for your time and effort in advance.

Harris Anastopoulos
249 PointsThank you very much friend. indeed u're right!
Jason Anello
Courses Plus Student 94,596 PointsJason Anello
Courses Plus Student 94,596 PointsHi Harris,
You want to use the backtick character to post your code. This is above the
tab
key.https://teamtreehouse.com/forum/posting-code-to-the-forum