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

Footer code challenge in HTML.

The challenge asks: "add the images facebook-wrap.png and twitter-wrap.png from inside the img folder. Be sure to include an appropriate alternate attribute for each. Don’t link them yet."

When I include:

<img src="img/twitter-wrap.png" alt"Twitter Logo"> <img src="img/facebook-wrap.png" alt"Facebook Logo">

I get the error: Be sure you add alt text to your Twitter link.

A little help please?

2 Answers

Sorry about the missing code. I didn't see the Markdown reference at first.

seems that I had them out of order.

I do not see an example of your HTML above but see if this works...

<img src="img/facebook-wrap.png" alt="facebook">
<img src="img/twitter-wrap.png" alt="twitter">