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

What is wrong with my code? I thought I wrote it correctly but it keeps saying bummer...

The code is entered correctly to my knowledge but I am stuck on this challenge. Please assist!

<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>

Keeps saying bummer...be sure to add alt text to your Twitter link.

1 Answer

Erik McClintock
Erik McClintock
45,783 Points

Yasmeen,

You are missing the equals sign between your alt attributes and their values.

You have:

<img src="blahblah" alt"ALTVALUEHERE">

You need:

<img src="blahblah" alt="ALTVALUEHERE">

Try that and see if it helps!

Erik

Thank you Erik!