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 trialClifford Angat
Front End Web Development Techdegree Student 1,437 Pointsnside 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
10,198 PointsWithout 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
8,750 PointsThis is what your footer should look like:
<footer>
<p>© 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
10,198 PointsIf the css is located in a folder then your footer should like this instead.
<footer>
<p>© 2013 Nick Pettit.</p>
<img src="../img/facebook-wrap.png" alt="facebook profile">
<img src="../img/twitter-wrap.png" alt="twitter profile">
</footer>
carol
11,442 Pointsthanks Cameron got it correct