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 trialjohn hassan
Courses Plus Student 660 Pointscan someone help me
it says Bummer! You need to set the 'href' attribute of the second <a> element to 'pies.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
Yariel Gordillo
8,878 PointsYou have to change your unordered list to this: <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>
Alex Koumparos
Python Development Techdegree Student 36,887 PointsHi John,
Ayub's comment has some good advice for improving code style, but your actual problem is revealed by the following text in the question:
"Make the text inside each list item a link."
This is telling you to make the text a link, and have that link be inside the list item. You have the whole list item inside your link.
Cheers
Alex
john hassan
Courses Plus Student 660 PointsThanks everyone for your help
Ayub Muhammad
Courses Plus Student 4,345 PointsAyub Muhammad
Courses Plus Student 4,345 PointsHi John! Number 1 I would indent the code just to make it easier to read Nuber 2 it looks like your code is okay but I would erase the space between href! So like this <a href="cakes.html"><li>Cakes</li><a/> Try that for all of them!