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 trialKim Dallas
11,461 Pointsmy brain is frozen up
I thought I had the a href setting correct. it won't work
<!DOCTYPE html>
<html>
<head>
<title>Lists and Links</title>
</head>
<body>
<ul>
<li>cakes</li>
<li> pies</li>
<li> candy</li>
</ul>
<a href="#"https://teamtreehouse.com/library/html-basics-2/getting-started-with-html/lists-and-links-challenge
cakes.html </a>
<a href="#"https://teamtreehouse.com/library/html-basics-2/getting-started-with-html/lists-and-links-challenge
pies.html </a>
<a href="#"https://teamtreehouse.com/library/html-basics-2/getting-started-with-html/lists-and-links-challenge
candy.html</a>
</body>
</html>
3 Answers
brevans26
15,198 PointsThe exercise is asking you to "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".
<!DOCTYPE html>
<html>
<head>
<title>Lists and Links</title>
</head>
<body>
<ul>
<li><a href=''?''>Cakes</a></li>
<li><a href="?">Pies</a></li>
<li><a href="?">Candy</a></li>
</ul>
</body>
</html>
Hope that helps!
Kim Dallas
11,461 Pointsdone thank you
Kim Dallas
11,461 Pointsthank you.
brevans26
15,198 PointsYou are welcome. Can you vote it as best answer and thumb it up, if possible?