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

Nick Doulas
Nick Doulas
333 Points

Help please: I am having difficulty adding FB and Twitter links to challenge exercise.

Ok, I am getting an error message here and I am not sure why? Please see belw

<footer> <img src="img/twitter-wrap.png" alt="Twitter Link"> <img src="img/facebook-wraP.png" alt="facebook Link"> <p>Ā© 2013 Nick Pettit.</p> Error Message: Bummer! Did you add the image for Facebook (img/facebook-wrap.png)?

6 Answers

Nicole H
Nicole H
2,981 Points

Can you add your code so we can troubleshoot it? Your code should look something like this:

<img src="img/facebook-wrap.png" alt="Facebook Logo">
Nick Doulas
Nick Doulas
333 Points

That looks like what i did. Below is my code:

<footer> <img src="img/twitter-wrap.png" alt="Twitter feed"> <img src="img/acebook-wrap.png" alt="Facebook Feed">

  <p>&copy; 2013 Nick Pettit.</p>
Nicole H
Nicole H
2,981 Points

Hi Nick,

This is the code I ended up with in the footer section for the code challenge. Check it against what you have and see if you notice any differences:

<footer>
   <p>&copy; 2013 Nick Pettit.</p>
   <img src="img/facebook-wrap.png" alt="Facebook Logo">
   <img src="img/twitter-wrap.png" alt="Twitter Logo">
</footer>
Nick Doulas
Nick Doulas
333 Points

Ok, Thanks. I will let you know in a minute.

Nick Doulas
Nick Doulas
333 Points

OK, that worked. I was putting it above it. Thanks for the help!!!!

Nicole H
Nicole H
2,981 Points

Ok. Glad you got it!