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

Not being able to link the images by wrapping them

In the CodeChallenge section I'm able to get through the first exercise but when I link the images there appears an error saying that the first task does not pass. When I return to the first task and re-check without making any changes it passes me immediately. The code I am using is:

<footer> 
      <a href="http://twitter.com/bbc"> <img src= "Img/twitter-wrap.png" alt="Twitter Logo"> </a>
      <a href="http://facebook.com/bbc"> <img src= "Img/facebook-wrap.png" alt="Facebook Logo"> </a> 
      <p>&copy; 2013 Nick Pettit.</p>
    </footer>

Made your code into 'code' :-)

2 Answers

What's the first task/exercise? The syntax looks correct. The only thing I can think of is that you might have something named wrong or misspelled (e.g. is it 'Img' or 'img').

I would agree with Shane here as most folder paths are (should) be lower case to avoid confusion like this

Thank you guys for your quick reaction to the post.

I was able to pass the challenge with your help, have a nice weekend!