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

Ryan B.
Ryan B.
3,236 Points

Hyperlink and Logo working just fine for Twitter. Facebook Hyperlink working but Logo not appearing. Why?

Here's my code:

<a href="http://facebook.com/ryan.bilello.3"><img src="Img/facebook-wrap.png" alt="Facebook Logo"></a>

<a href="http://twitter.com/4TheLifeOfMe20"><img src="Img/twitter-wrap.png" alt="Twitter Logo"></a>

Looks like your code didn't make it through. Try pasting it again?

Emma Willmann
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Emma Willmann
Treehouse Project Reviewer

Hey Ryan, looks like your code isn't showing. Can you try posting it again? You can use the Markdown Cheatsheet below the answer/comment box to help you with how to format your code.

5 Answers

You have a capital letter "I" in the src path. It should be "img", not "Img".

Ryan B.
Ryan B.
3,236 Points

<a href="http://twitter.com/4TheLifeOfMe20"><img src="Img/twitter-wrap.png" alt="Twitter Logo"></a> <a href="http://facebook.com/ryan.bilello.3"><img src="Img/facebook-wrap.png" alt="Facebook Logo"></a>

Ryan B.
Ryan B.
3,236 Points

Interesting. The folder is spelt with a capital "I" so I've been doing that the entire way through. Also, I'm not having any issues with my twitter logo which also has it spelt with a capital "I". Code pasted below. Hmm, this is very interesting.

<a href="http://twitter.com/4TheLifeOfMe20"><img src="Img/twitter-wrap.png" alt="Twitter Logo"></a>

Thas Eagans
PLUS
Thas Eagans
Courses Plus Student 2,533 Points

You didn't post code again. Also that src path requires that the page calling the image is in the 'root' folder. I'm assuming it is. if the images folder is named: img then you should be using

<img src="img/facebook-wrap.png" alt="Facebook Logo">

</TREagans>

Ryan B.
Ryan B.
3,236 Points

Twitter Logo & Hyperlink good. Facebook hyperlink good but no logo....

<a href="http://facebook.com/ryan.bilello.3"><img src="Img/facebook-wrap.png" alt="Facebook Logo"></a>
<a href="http://twitter.com/4TheLifeOfMe20"><img src="Img/twitter-wrap.png" alt="Twitter Logo"></a>