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.

Paul Blakeman
1,203 PointsBug in workspace?
It says to add a list item called 'Portfolio', which I have done. But I get an error message asking me to add a list item called 'Portfolio'.
I can't get past this step!
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Nick Pettit</title>
</head>
<body>
<header>
<a href="index.html"></a>
<nav>
<ul>Portfolio</ul>
<ul>About</ul>
<ul>Contact</ul>
</nav>
<h1>Nick Pettit</h1>
<h2>Designer</h2>
</header>
<section></section>
<footer>
<p>© 2013 Nick Pettit.</p>
</footer>
</body>
</html>
2 Answers

Jeff Lemay
14,267 PointsIt's not a bug, the list you created is not coded properly. When you make an unordered list, you wrap the whole list in < ul > tags and then have each item wrapped in a list-item tag < li >.
<ul>
<li>Portfolio</li>
<li>About</li>
<li>Contact</li>
</ul>

Paul Blakeman
1,203 PointsThanks Jeff!