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

Tremayne Clinton
5,417 Pointscan someone tell me why my code is doing this adding dots between the list?
this is what I have it adding dots between the code on the preview page so want let me pass
<li><a href="index.html">Portfolio</a><li> <li><a href="About.html">About</a><li> <li><a href="Contact.html">Contact</a><li>
1 Answer

Tyler Herbst
11,763 PointsYour list items' closing tags are all missing the '/' character. Hope that helps!
Edit: They should look like this:
<li><a href="index.html">Portfolio</a></li>
<li><a href="About.html">About</a></li>
<li><a href="Contact.html">Contact</a></li>
Tremayne Clinton
5,417 PointsTremayne Clinton
5,417 PointsThank you that worked