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

Why isn't this linking

Its asking me to link each html to an outside source, what is wrong here?

index.html
<!DOCTYPE html>
<html>
  <head>
    <title>Lists and Links</title>
  </head>
  <body>
    <ul> 
      <li>Cakes</li>
      <a href="cakes.html">cakes</a>
      <li>Pies</li>
      <a href="pies.html">pies</a> 
      <li>Candy</li>
      <a href="candy.html">candy</a>
    </ul>   
  </body>
</html>

3 Answers

Hi Haley,

As stated by stjarnan, the a element with the href attribute should be nested within the li element, it should read as follows:

<li><a href="path"> Desired Text </a></li>

Likewise, once corrected, ensure that you have the right path files, remember they are relative to the file you are coding within.

Hope this helps, Leon.

Bogdan-Adrian Cornea
Bogdan-Adrian Cornea
9,347 Points

Hi Haley,

You just need to add this model of block code

<li><a href="url Path"> Text </a></li>