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 trialJohnathan Rowley
3,842 Pointssick of bummer
i put the word Portfolio in just as it says and its not correct can some please tell what is up
3 Answers
Matthew Shettler
8,819 PointsDid you wrap it in <li> tags? Did you also include About and Contact list items?
<li>Portfolio</li>
...
Blake Leal
6,237 PointsMatthew Shettler is correct. You must wrap your < ul> (unordered list) in < li> (list item) tags.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Nick Pettit</title>
</head>
<body>
<header>
<nav>
<a href="index.html">
<ul>
<li>Portfolio</li>
<li>About</li>
<li>Contact</li>
</ul>
</a>
</nav>
</header>
<section></section>
<footer>
<p>© 2013 Nick Pettit.</p>
</footer>
</body>
</html>
```
Johnathan Rowley
3,842 Pointsthanks a lot it helped
Alan Johnson
7,625 PointsAlan Johnson
7,625 PointsCan you update your question here to include the source code you've entered? That'll help us troubleshoot it.