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

i dont know where im going wrong

im putting in everything right or am i not? its asking to include in images the facebook and twitter-wrap.png

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

where am i going wrong?

Adam Moore
Adam Moore
21,956 Points

You'll probably have to include your code on here to make it easier to diagnose the issue.

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

it doesnt show when i put <> in

Jeffrey Wambugu
Jeffrey Wambugu
8,548 Points

look at my second comment bellow

3 Answers

Jeffrey Wambugu
Jeffrey Wambugu
8,548 Points

You should probably include your code next time but you add an image tag as follows

<img src="imagePath" alt="imageDescription">

for this it would be <img src="img/twitter-wrap.png" alt="twitter"> then do the same for facebook

Jeffrey Wambugu
Jeffrey Wambugu
8,548 Points

Aahh I also made the same mistake forgot to include the markdown for the comment so that it outputs code you can check the format below on the link "Markdown Cheatsheet"

<img src="imagePath" alt="imageDescription">

your answer should be:

<img src="img/twitter-wrap.png" alt="twitter">

okay without logo