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 trialAlisha Austin
5,708 PointsThe Creating HTML challenge that involves creating a navigational element does not recognized <ul>Portfolio</ul>
<nav> <ul>Portfolio</ul> <ul>Contact</ul> <ul>About</ul> </nav>
I wrote my code out like the example above and your program tells me that I didn't put "Portfolio" as in item in the unordered list.
4 Answers
Gary Christie
5,151 PointsDo you have order as <nav>
then <ul>
then <li>portfolio</li>
</ul></nav>
. Remember "Portfolio" is a listed item in a Unordered list.
Gary Christie
5,151 PointsNot sure if that centex came out right. Portfolio sounds like it should be a list item in a unordered list. Example <ul><li>Portfolio</li></ul>
penmetsa venkata subbaraju
413 Pointsthanks already solved ......
Alisha Austin
5,708 PointsAh, fixed it. Thanks :)
Gary Christie
5,151 PointsGlad I was able to help
Gary Christie
5,151 PointsCopy and paste your code so I can look at it
penmetsa venkata subbaraju
413 Pointspenmetsa venkata subbaraju
413 Pointsi'm also getting this error but not fixed . but i coded correctly :-( .
<nav>
<ul>
<li> portfolio </li>
<li>about</li>
<li>contact</li>
</ul>
<nav>