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

HTML HTML Basics Getting Started with HTML Lists and Links Challenge

set href attribute of the second <a> to pies.com

don't understand where am going wrong

index.html
<!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

<a tag is suppose to be inside <li></li> and not outside

<li> <a href=" cooky.com">cook</a> </li>

Cooper Runstein
Cooper Runstein
11,850 Points

You're setting the href to a .html, not .com.

William Johnson
William Johnson
7,390 Points

Your <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>