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 How to Make a Website Creating HTML Content Create Navigation with Lists

Mark Sims
Mark Sims
2,637 Points

Questions says to link list item Portfolio to "index.html", I can't figure out what i'm doing wrong.

Challenge Task 3 of 3 This is my Challenge Task: Link each of the three list items. Portfolio should go to “index.html”, About should go to “about.html”, and Contact should go to “contact.html”. This is my answer: <nav> <ul>
<li><a href="index.html"></a>Portfolio</li> <li><a href="about.html"></a>About</li> <li><a href="contact.html"></a>Contact</li> </ul> </nav> It says that my answer is wrong. I can't figure out what is wrong with it. Please help.

index.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Nick Pettit</title>
  </head>
  <body>
    <header>       
      <a href="index.html">
        <h1>Nick Pettit</h1>
        <h2>Designer</h2>
      </a>
      <nav> 
        <ul>
          <li><a href="index.html"></a>Portfolio</li>
          <li><a href="about.html"></a>About</li>
          <li><a href="contact.html"></a>Contact</li>
        </ul>
        </nav>
    </header>
    <section></section>
    <footer>
      <p>&copy; 2013 Nick Pettit.</p>
    </footer>
  </body>
</html>

2 Answers

Hello Mark Sims,

Small misunderstanding here is all. Example with comment below...

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Nick Pettit</title>
  </head>
  <body>
    <header>       
      <a href="index.html">
        <h1>Nick Pettit</h1>
        <h2>Designer</h2>
      </a>
      <nav> 
        <ul>
          <li><a href="index.html">Portfolio</a></li> <!-- The link needs to be clickable to work and needs to wrap into the word like this. With it being out of the <a> tag its like saying <li>Portfolio</li>  making it not clickable -->
          <li><a href="about.html">About</a></li>
          <li><a href="contact.html">Contact</a></li>
        </ul>
        </nav>
    </header>
    <section></section>
    <footer>
      <p>&copy; 2013 Nick Pettit.</p>
    </footer>
  </body>
</html>

Hopefully that helps!

Mark Sims
Mark Sims
2,637 Points

Thank you so much for the help. This solved my problem. I have to start paying closer attention to detail.

Moosa Bonomali
Moosa Bonomali
6,297 Points

Portfolio should be in between the anchor tags like this;

<li><a href="index.html">Portfolio</a></li>

So that your code should come out like this;

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>Nick Pettit</title>
</head>
<body>
    <header>       
        <a href="index.html">
            <h1>Nick Pettit</h1>
            <h2>Designer</h2>
        </a>
    <nav> 
        <ul>
            <li><a href="index.html">Portfolio</a></li>
            <li><a href="about.html">About</a></li>
            <li><a href="contact.html">Contact</a></li>
        </ul>
    </nav>
    </header>
<section></section>
<footer>
    <p>&copy; 2013 Nick Pettit.</p>
</footer>
</body>
</html>
Mark Sims
Mark Sims
2,637 Points

Thank you for the quick response to my question and for pointing out the mistake I was making. Your input is very much appreciated. I will start paying closer attention to detail.