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 trialjoshua sigston
2,389 PointsMake 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
<!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>
Elijiah Garmon
2,337 Pointsyour last link says hred, change it to href
Kortney Field
14,091 PointsI took off the http://www. on each link and it worked for me.
9 Answers
Quentin Jobs
UX Design Techdegree Graduate 23,599 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>
chase singhofen
3,811 Pointsyes, with quentin jobs. also make sure they are lower case
Brandon Christian
4,320 PointsTry 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
9,830 Pointsyou have hred in your third line
Felix Timothy
3,064 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>
Anthony Carnelli
1,646 PointsI think there's a glitch because none of these are working for me
Stephen Ambler
8,236 Points<li><a href="http://www.candy.html">Candy</a></li> Try that
Tolani Folaranmi
826 PointsThis should work <li><a href="cakes.html">cakes</li>
Andrew Spalding
8,708 PointsThanks for all your help it worked after dropping the http part.
Jose Villasenor
Front End Web Development Techdegree Student 426 PointsHello, I have been stuck on this challenge for too long. Can someone please help.
Quentin Jobs
UX Design Techdegree Graduate 23,599 PointsCan you post your code so that we can see where you are stuck?
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>
Brandon Christian
4,320 PointsBrandon Christian
4,320 PointsHow did you do the screenshot? Is it just a regular screenshot or is there a feature here on treehouse you can use?