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

Why does it keep asking me to add alt text to my twitter link when I already have? I think something is broken.

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

6 Answers

you're missing an equals sign "=" after your alt attributes.

jase richards
jase richards
10,379 Points

You can try saving then closing the browser and reloading everything, if you think its broken. It probably isn't and there is something wrong with your coding, post it so fresh eyes can look at your work.

You could try refreshing the browser, occasionally things get messed up. But could just be a stray character somewhere. Could you post the code? (You need to follow the markdown instructions on how to post code in the comments)

I tried to post the code in comments but it doesnt show up even with the ''' in between. This is frustrating being a newb.

That's the wrong character, looks like you're using single quote marks. You need to put three ticks ``` (copy and paste from my comment to make sure). Put them before and after your code. Also put "html" straight after the first set of ticks to tell it which language it should format for.

html <footer> <img src="img/twitter-wrap.png" alt"Twitter logo"> <img src="img/facebook-wrap.png" alt"Facebook logo"> <p>&copy; 2013 Nick Pettit.</p> </footer>

Wow. How did i miss that thankyou so much