Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

bobaya meyers
467 PointsI'm not sure what is wrong with this link <a href='cakes.html'><li>cakes</li> </a>
can someone help me out
<!DOCTYPE html>
<html>
<head>
<title>Lists and Links</title>
</head>
<body>
<ul>
<a href='cakes.html'><li>Cakes</li></a>
<a href='pies.html'><li>Pies</li></a>
<a href='candy.html'><li>Candy</li></a>
</ul>
</body>
</html>
1 Answer

Jennifer Nordell
Treehouse TeacherHi there! You're doing great, but you've gotten things a bit backwards here. The only allowable direct descendant of an ordered or unordered list is a list item (<li>
). When you make the links the anchor tags should be inside the list item. Yours are the other way around. You have the list items inside inside the anchor tags.
I think you can get it with these hints, but let me know if you're still stuck!
bobaya meyers
467 Pointsbobaya meyers
467 PointsThanks so much ..I got it now ..you're the best