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

what is my mistake

<p>&copy; 2013 Nick Pettit.</p>
      <img src = "img/twitter-wrap.png"alt = "Twitter Logo"></a>
    <img src = "img/facebook- wrap.png"alt = "Facebook Logo"></a>
Ken Alger
Ken Alger
Treehouse Teacher

Daniel;

Not certain what the issue is you are having, but judging by the above code I see that for your Facebook image file name you have a space in there facebook- wrap.png. Should that be there?

If you can describe more as to what your issue is, you may get a better response.

Thanks,
Ken

Ken Alger
Ken Alger
Treehouse Teacher

Edited for markdown

6 Answers

Himanshu Chopra
Himanshu Chopra
3,055 Points

Hi, I think yo forgot to add the opening anchor tag in your code and also add one space before your alt attribute.

 <a href="http://www.twitter.com/yourprofile"><img src = "img/twitter-wrap.png" alt = "Twitter Logo"></a>
    <a href="http://www.facebook.com/yourprofile"><img src = "img/facebook- wrap.png" alt = "Facebook Logo"></a>

hope this works for you!

Inge L
Inge L
30,058 Points

Ken is right just take care of that space. Don't link them yet. <img src="img/facebook-wrap.png" alt="Facebook Logo"> Should work I tried right now!

did not work

did not work

Hi Daniel, I think you might have forgotten to leave a space between your "img/twitter-wrap.png" and your "alt" tag on both. There is also a gap in your img/facebook-wrap.png - Yours says img/facebook -wrap.png Try leaving a space between and see if it passes :D

Ken Alger
STAFF
Ken Alger
Treehouse Teacher

Daniel;

Sorry, was working on something else simultaneously and didn't make the connection to the challenge. :frown:

Take the space out from the facebook- wrap portion of the file name and remove the closing anchor tags. You don't need those for this challenge task.

Ken