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

Chiemeka Umesi
Chiemeka Umesi
89 Points

Can I move to another lesson without completing an exercise.?

index.html
<!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

Hi 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

Chiemeka Umesi
Chiemeka Umesi
89 Points

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

I did exactly the way you did it but it didn't work for me so I am so exhausted I wanna skip it

that is exactly how I did and it is giving me wrong answer

Hi 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