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.

ANN NJOROGE
202 Pointsset href attribute of the second <a> to pies.com
don't understand where am going wrong
<!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>
3 Answers

joseph owigo
126 Points<a tag is suppose to be inside <li></li> and not outside
<li> <a href=" cooky.com">cook</a> </li>

Cooper Runstein
11,836 PointsYou're setting the href to a .html, not .com.

William Johnson
7,390 PointsYour <a href"">content</a> tags
should be inside of the <li>content</li> tags like this:
<li><a href="https://teslasuit.io/blog/virtual-reality/vr-entertainment-from-fun-to-deep-fascination" target="_blank">Virtual Reality in Entertainment</a></li>
William Johnson
7,390 PointsWilliam Johnson
7,390 Pointscorrect!