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 trial

HTML How to Make a Website Creating HTML Content Create Navigation with Lists

The 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.

penmetsa venkata subbaraju
penmetsa venkata subbaraju
413 Points

i'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>

4 Answers

Do you have order as <nav> then <ul> then <li>portfolio</li></ul></nav>. Remember "Portfolio" is a listed item in a Unordered list.

Not 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>

Ah, fixed it. Thanks :)

Glad I was able to help

Copy and paste your code so I can look at it