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 trialbrandon smee
2,454 PointsI'm having trouble figuring out what's wrong with my anchor attribute and href.
Hi, this problem is asking me to link each of the list items to its appropriate html page. The list items are cake, pies, and candy, and their HTML pages are cakes.html, pies.html, and candy.html. The challenge is saying pies.html is not linked correctly, but I can't see what I'm doing wrong. Can anyone help me figure out why it's not working?
<!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
Ryan M
16,509 PointsThe list item elements should be the direct children of the unordered list so the anchor tags should go inside the list items.
<ul>
<li><a href="cakes.html">Cakes</a></li>
<li><a href="pies.html">Pies</a></li>
<li><a href="candy.html">Candy</a></li>
</ul>