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

need help

This code is not working for this challenge I need the answer

<img src="img/numbers-02.jpg" alt=""> </li> <li> <img src="img/numbers-06.jpg" alt=""> </li> </ul> </section> <footer> <p>Β© 2013 Nick Pettit.</p> <img src = "img/twitter-wrap.png"alt = "Twitter Logo"></a> <img src = "img/facebook- wrap.png"alt = "Facebook Logo"></a> </footer> </body> </html>

1 Answer

Owa Aquino
Owa Aquino
19,277 Points

I can see you have an extra closing anchor </a> tag in your code after the images.

The tasks says "Inside the <footer> element, add the images facebook-wrap.png and twitter-wrap.png from inside the img folder. Be sure to include an appropriate alternate attribute for each. Don’t link them yet."

You should only have this ff. under the footer element.

<footer>
  <p>&copy; 2013 Nick Pettit.</p>
    <img src = "img/twitter-wrap.png" alt = "Twitter Logo">
    <img src = "img/facebook- wrap.png" alt = "Facebook Logo">
</footer>
Aaron Kaye
Aaron Kaye
10,948 Points

Also there is a space in the facebook image src, but agreed, the closing anchor tags should not be there because 1) challenge says not to add them, 2) there isn't an opening anchor tag