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

nside the <footer> element, add the images facebook-wrap.png and twitter-wrap.png from inside the img folder. Be sure to

help

3 Answers

Cameron Bourke
Cameron Bourke
10,198 Points

Without looking at any code I feel as if using "../img/twitter-wrap.png" instead of "img/twitter-wrap.png" should fix any dramas you are having, hopefully! haha.

Kristijan Ε½upan
Kristijan Ε½upan
8,750 Points

This is what your footer should look like:

     <footer>
      <p>&copy; 2013 Nick Pettit.</p>
      <img src="img/facebook-wrap.png" alt="facebook profile" />
      <img src="img/twitter-wrap.png" alt="twitter profile" />
    </footer>
Cameron Bourke
Cameron Bourke
10,198 Points

If the css is located in a folder then your footer should like this instead.

<footer>
      <p>&copy; 2013 Nick Pettit.</p>
      <img src="../img/facebook-wrap.png" alt="facebook profile">
      <img src="../img/twitter-wrap.png" alt="twitter profile">
</footer>

thanks Cameron got it correct