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

You need to set the 'href' attribute of the second <a> element to 'pies.html'.

You need to set the 'href' attribute of the second <a> element to 'pies.html'.

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

        </ul>
       </li>
     </ol>

  </body>
</html>

2 Answers

Linas Mackonis
Linas Mackonis
7,071 Points

Hi Montse, remember to place every list item into <li> tags. Here is a full solution:

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

  </body>
</html>
Oszkár Fehér
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Oszkár Fehér
Treehouse Project Reviewer

Hi Montse Gonzalez. You are almost there, it's just missing a tag from each list element, the 1st question: Convert the text inside the <body> tags into an unordered list. which you created

<ol>       <----- but this part? an experiment?
  <ul>       <--- this with
  <a href= "cakes.html">Cakes</a>     <--- and here should be the list element
  <a href= "pies.html">Pies</a>
    <a href= "candy.html">Candy</a>
  </ul>      <--- this
     <li>           <----- I guess this part is an experiment as well
        Contact
      <ul>
       <li>Email</li> 
         <li>Phone</li>
         <li>Address</li> 

        </ul>
       </li>
     </ol>

In your code between <ul> tags should be a list tag, <li> and you have <a> tag which will come handy in the second question which is the following: 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. I hope it will help you figure out. Happy coding.