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 Add Social Media Links

Add link in footer

I am taking challenge for adding facebook and twitter link in footer, I have check couple times, it still said that I did wrong, anyone can help to find out what I did wrong....Thank you!!

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">Portfolio</a></li>
          <li><a href="about.html">About</a></li>
          <li><a href="contact.html">Contact</a></li>
        </ul>
      </nav>
    </header>
    <section>
      <ul>
        <li>
          <img src="img/numbers-01.jpg" alt="">
        </li>
        <li>
          <img src="img/numbers-02.jpg" alt="">
        </li>
        <li>
          <img src="img/numbers-06.jpg" alt="">
        </li>
      </ul>
    </section>
    <footer>
      <a href="http://facebook.com/chau.edwin><img src="img/facebook-wrap.png" alt="facebook logo"></a>
      <a href="http://twitter.com/chau.edwin><img src="img/twitter-wrap.png" alt="twitter logo"></a>                                                                                            
      <p>&copy; 2013 Nick Pettit.</p>
    </footer>
  </body>
</html>

1 Answer

Erik McClintock
Erik McClintock
45,783 Points

Edwin,

This is a simple syntax error. You're missing the closing quotation marks at the end of both of your hrefs.

You have:

<a href="http://www.facebook.com/chau.edwin><img...></a>
<a href="http://www.twitter.com/chau.edwin><img...></a>

After the chau.edwin of both links, you're missing the quotation mark. You need to close the quotation marks around the value for your href attributes, like this:

<a href="http://www.facebook.com/chau.edwin"><img...></a>
<a href="http://www.twitter.com/chau.edwin"><img...></a>

Otherwise, you're good to go!

Erik

Thanks for your help!