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

Step 1-Adding text to your links?

I keep getting this- Be sure you add alt text to your Twitter Link.

here's the footer code:

<footer> <img src= "img/twitter-wrap.png"> alt= "twitter logo"> <img src= "img/facebook-wrap.png"> alt="facebook logo"> <p>Ā© 2013 Nick Pettit.</p> </footer>

Nothing else has been changed. What am I forgetting?

Angela Bortone
Angela Bortone
7,405 Points

Remove the first > as it is closing your tag. <img src="img/twitter-wrap.png" alt="twitter logo">

You need to remove the first > character in the <img src tag, because its closing off your "alt= "twitter logo"> part of the code.

2 Answers

Like they mentioned above removing the first >. But also there should be no space after src=.

Thanks!