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 Build the Footer

Taylor Zorman
Taylor Zorman
1,961 Points

Twitter and Facebook images not showing up correctly

The rest of my images have worked but the logos for facebook and twitter seem to be broken...

<footer>
      <a href="http://twitter.com/npettit"><img scr="img/twitter-wrap.png" alt="Twitter Logo"></a>
      <a href="http://facebook.com/nick.pettit"><img scr="img/facebook-wrap.png" alt="Facebook Logo"></a>
      <p>&copy; 2014 Taylor.</p>
    </footer>

1 Answer

Hi Taylor!

Your problem is that you have spelled the src attribute as scr. This is why you are having difficulties!

This code should work fine for you!

<footer>
      <a href="http://twitter.com/npettit"><img scr="img/twitter-wrap.png" alt="Twitter Logo"></a>
      <a href="http://facebook.com/nick.pettit"><img scr="img/facebook-wrap.png" alt="Facebook Logo"></a>
      <p>&copy; 2014 Taylor.</p>
</footer>

No Problem, have fun programming!