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 trialNicolle Merrill
1,331 PointsUnordered List: Added <ul>Portfolio</ul> and yet can't pass stage.
Prompt keeps telling me: Be sure you add a list item with the word "Portfolio" in it. I did: <ul>Portfolio</ul> and yet will not progress.
1 Answer
Allie O.
11,601 PointsMake sure to add the <li></li>
tags for each item you add inside your unordered list. For example:
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>