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 Introduction to HTML and CSS (2016) Adding a New Web Page Test: Link It Up Challenge

Put a set of anchor tags around "Menu" in the last list item. You don't need to add any attributes to the anchor tag yet

index.html
<!doctype html> 
<html>
  <head>
    <title>Al's Restaurant</title>
  </head>
  <body>
        <ul class="nav">
          <li><a href="#">Home</a></li>
          <li><a href="food-gallery.html">Food Gallery</a></li>
          <li>a href="Menu</li>
        </ul>
  </body>
</html>

1 Answer

Daniel Montgomery
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree seal-36
Daniel Montgomery
Treehouse Staff

Hey Ndhokoyo Aaron, you're off to a good start! One suggestion I have would be to look at the first two list items and notice all the similarities in those lines of code, you will want the third list item(the line you are working on) to be formatted in the exact same way. Which you have started off in that direction, but if you look closely you will notice you are missing some of the formatting the above two use. Like closing off the starting anchor tag for instance.

Let me know if this helps point you in the right direction or not and we can go from there. Happy coding!