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

joshua sigston
joshua sigston
2,389 Points

Make the text inside each list item a link.

Make the text inside each list item a link. The first item should link to cakes.html, the second to pies.html and the third to candy.html. Don't see whats wrong with my code

index.html
<!DOCTYPE html>
<html>
  <head>
    <title>Lists and Links</title>
  </head>
  <body>
  <ul>
    <li><a href="http://www.cakes.html">Cakes</a></li>
    <li><a href="http://www.pies.html">Pies</a></li>
    <li><a hred="http://www.candy.html">Candy</a></li>
    </ul>
  </body>
</html>

How did you do the screenshot? Is it just a regular screenshot or is there a feature here on treehouse you can use?

your last link says hred, change it to href

I took off the http://www. on each link and it worked for me.

9 Answers

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

chase singhofen
chase singhofen
3,811 Points

yes, with quentin jobs. also make sure they are lower case

Try it without the "http://" before the url.

This should work:

<!DOCTYPE html> <html> <head> <title>Lists and Links</title> </head> <body> <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> </body> </html>

ttaleg
ttaleg
9,830 Points

you have hred in your third line

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

I think there's a glitch because none of these are working for me

Stephen Ambler
Stephen Ambler
8,236 Points

<li><a href="http://www.candy.html">Candy</a></li> Try that

This should work <li><a href="cakes.html">cakes</li>

Thanks for all your help it worked after dropping the http part.

Hello, I have been stuck on this challenge for too long. Can someone please help.

Can you post your code so that we can see where you are stuck?

Steven Scott
Steven Scott
7,542 Points

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