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 trialChiemeka Umesi
89 PointsCan I move to another lesson without completing an exercise.?
<!DOCTYPE html>
<html>
<head>
<title>Lists and Links</title>
</head>
<body>
<ul>
<a href="cakes.html"li>Cakes</>
<li>Pies</li>
<li>Candy</li>
</ul>
</body>
</html>
2 Answers
Unsubscribed User
Front End Web Development Techdegree Student 33,900 PointsHi Chiemaka,
you can always skip by just by clicking the next part in the nav bar above the video / quizzes / challenges windowโฆ
But generally spoken I would not reccromend to quit any code challenge. Sometimes it can be really annoying if it takes a while to find the solution - i know that very well. But in the long run, you will learn a a lot if you stick till you find the solutionโฆ In your coding journey you will come accross MANY unexpected challenges and it's crucial to learn how to solve them.
Most of the times when you can't figure out a challenge here at treehouse, I would reccomend watching the last (few) video(s) again and take notes. Probably 90% of the problems you can solve that way.
But you can always use this community forum to give you hints.
Here is mine:
To make text inside a list a link you go like this:
<ul>
<li><a href=โ#โ>List-item 1</a></li>
<li><a href=โ#โ>List-item 2</a></li>
<li><a href=โ#โ>List-item 3</a></li>
</ul>
"#" in the example is just a placeholder for the correct href value of the link.
Does that make sense to you? Do you understand how to apply it to this challenge task? Feel free to ask if not...
Happy coding, Nils
Omar Abdullahi
64 Pointsthat is exactly how I did and it is giving me wrong answer
Unsubscribed User
Front End Web Development Techdegree Student 33,900 PointsHi Omar,
if you present your code I can surly help you.
Without any code I can only guess you made some spelling mistake...
Because one thing is pretty certain: If you don't pass a challenge, there is some problem with your code.
Best wishes, Nils
Chiemeka Umesi
89 PointsChiemeka Umesi
89 PointsI tried it, it didn't work
Here is what I did, can you tell me what's wrong.
<ul> <li><a href="#">Cakes.html</a></li> <li><a href="#">Pies.html</a></li> <li><a href="#">Candy.html</a></li> </ul>
Omar Abdullahi
64 PointsOmar Abdullahi
64 PointsI did exactly the way you did it but it didn't work for me so I am so exhausted I wanna skip it