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

Karl Karapetyan
Karl Karapetyan
1,706 Points

Can t skip my task

what s wrong?

index.html
<!DOCTYPE html>
<html>
  <head>
    <title>Lists and Links</title>
  </head>
  <body>
      <a href="cakes.html">Cakes</a>
      <a href="pies.html">Pies</a>
      <a href="candy.html.">Candy</a>
  </body>
</html>
Jay Padzensky
Jay Padzensky
4,731 Points

For future reference, you're able to skip tasks by using the nodes at the top of the video player. On the left will likely be filled white nodes, the course you're on is depicted by your avatar picture, and to the right are (assumedly) unviewed/incomplete tasks. Selecting the node to the right of your avatar will take you to the next task.

1 Answer

Todd Anderson
Todd Anderson
4,260 Points

Hi!

You have yet to create an unordered list here <ul></ul> Inside the list every tag should be an item in the list <li><a href="candy.html"></a></li> You also have a period in the last tag after .html

I hope this helps!