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 trialANN 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,850 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!