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

Stephen Ballard
Stephen Ballard
417 Points

Cannot get the Facebook-Wrap .png image to appear.

Hello I just have a question regarding the "build your own website" course. After attempting to add my facebook account to the footer of my site, I'm running into some trouble with the facebook-wrap.png image actually appearing.

<a href="https://www.facebook.com/stephen.v.ballard"><img src="img/facebok-wrap.png" alt="facebook Logo"></a>

I think I have it coded correctly but instead of the actual image I get my alt. The site shows a picture with a slash through it, then says "facebook logo" instead of having the .png image. Does this have to do with the upload? I tried re uploading the image to my img folder. Not sure why I cant get the actual png image to show on my browser.

Stephen Ballard
Stephen Ballard
417 Points

</section> <footer> <a href="https://www.facebook.com/stephen.v.ballard"><img src="img/facebok-wrap.png" alt="facebook Logo"></a> <p>Ā© 2015 Stephen Ballard.</p> </footer> </body> </html>

1 Answer

There was an o missing from facebook-wrap.png.

You might try this:

  <a href="https://www.facebook.com/stephen.v.ballard"><img src="img/facebook-wrap.png" alt="facebook Logo"></a>
  <p>&copy;  2015 Stephen Ballard.</p>
</footer>