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
Eli Pacheco
453 PointsWhat's wrong? <a href="http://twitter.com/Eliatcoachdaddy" img src="img/twitter-wrap.png" alt="Twitter logo" </a>
The question asks me to add the Twitter logo, but I have. Is there something I'm missing?
1 Answer
rydavim
18,814 PointsWithout seeing the rest of your code, it looks like you've added the img using an 'a' link tag instead of an image tag. When linking an image, you'll need to put the img tag inside the link tags.
<a href="your/link/here">
<img src="your/image/path" alt="alternate text">
</a>
If that doesn't solve your problem, try posting your code or sharing your workspace using snapshot so we can take a look at what else might be causing issues. It's possible that we're not seeing the snippet correctly in the title.