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 trialEthan Worlow
731 PointsImage not working
I have been stuck on this code challenge for a week or so and I can't get to twitter image to work. I have checked my code and it looks right but I still get the "Bummer, did you forget to add your image for twitter?" message. Here's all the footer code.
<footer>
<img scr="img/facebook-wrap.png" alt="facebook logo">
<img scr="img/twitter-wrap.png" alt="twitter logo">
<p>© 2013 Nick Pettit.</p>
</footer>
2 Answers
Kiersten Marchand
5,698 PointsIf it is the first part of this challenge you're stuck on, your code for the twitter image should be inserted between the footer tags and look like <img src="img/twitter-wrap.png" alt="Twitter Logo">
This part of the challenge also required you to add the Facebook image (which will follow the same pattern as the Twitter one), so make sure you enter them both.
Ethan Worlow
731 PointsThanks, not sure what I did wrong (I've done this before) But your code worked. Thanks
Niki Noll
9,993 PointsHi Ethan,
Can you wrap your code so we can see it? Like explained here:
Code Wrap your code with 3 backticks (```) on the line before and after. If you specify the language after the first set of backticks, that'll help us with syntax highlighting.
```html
<p>This is code!</p>
```
Then I can get a better idea of what your problem might be!
Kiersten Marchand
5,698 PointsKiersten Marchand
5,698 PointsJust so you know, the only thing that was wrong was you had img scr when it should be img src.
Hope that helps!