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

Kyle Hotchkiss
Kyle Hotchkiss
2,006 Points

Not letting me pass

says to point "Portfolio" to "index.html"

<---a href="index.html">Portfolio<----/a>

does this not do it? it keeps rejecting the code.

Kyle Hotchkiss
Kyle Hotchkiss
2,006 Points

these symbols ----- for viewing. I do not involve those in the code. haha

Aisha Blake
Aisha Blake
Treehouse Guest Teacher

Yeah, the markdown takes a bit of getting used to (at least for me).

2 Answers

Aisha Blake
STAFF
Aisha Blake
Treehouse Guest Teacher

Sorry, this was an edit of a comment... Try including the entire list item element in your link. Like:

          <a href="index.html"><li>Portfolio</li></a>

The code <li><a href="index.html">Portfolio</a></li> works fine. It says to link all three list items, have you done so?