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

Luke Svarc
Luke Svarc
1,338 Points

Facebook Logo not showing in Footer but Twitter logo is?

Hi,

I have just added the Twitter and Facebook logos to my footer code as per the video. However the Twitter logo is showing fine but the Facebook logo will not show. I have tried few different things and have now copied the code exactly from the guide but still seem to be missing something. Can anyone help?

This is my code: https://w.trhou.se/2ngz2d9194

Thanks

1 Answer

You're missing some closing quotation marks in the alt tag and facebook's href tag. It should look like this:

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

      <p>&copy; 2016 Luke Svarc.</p>
    </footer>

See if that works :)

Luke Svarc
Luke Svarc
1,338 Points

Hi Alyssa,

Thanks so much, such a simple mistake but I guess I looked at it so much I just couldn't see it anymore!!

Thanks for your help, it all works perfect now and I picked up where I went wrong.

Thank you.

No problem! Glad I could help!