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

I cannot figure out the answer to putting anchor tags around Menu

It keeps telling me I am doing it wrong. Maybe I don't understand the problem.

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"</a></li>
        </ul>
  </body>
</html>

2 Answers

james chhun
james chhun
5,932 Points

<li><a href="Menu"</a></li> this is what you have....

your anchor isn't complete .. TRY THIS <a href="menu">Menu</a>

The first task is just anchor tags with no attributes

<a>Menu</a>

For the second task you can use the line above that as an example