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 trialRicky Freeman
Courses Plus Student 1,509 Pointsi 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?
Ricky Freeman
Courses Plus Student 1,509 Pointsimg src="img/twitter-wrap.png" alt="Twitter logo" img src="img/facebook-wrap.png" alt="Facebook logo"
Ricky Freeman
Courses Plus Student 1,509 Pointsit doesnt show when i put <> in
Jeffrey Wambugu
8,548 Pointslook at my second comment bellow
3 Answers
Jeffrey Wambugu
8,548 PointsYou 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
8,548 PointsAahh 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">
Ricky Freeman
Courses Plus Student 1,509 Pointsokay without logo
Adam Moore
21,956 PointsAdam Moore
21,956 PointsYou'll probably have to include your code on here to make it easier to diagnose the issue.