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've checked this a few times and have not found my error... Error message asks whether I have put a link around the

Twitter logo image...

Inside the <footer> element, wrap the Facebook and Twitter images with links to your own accounts. <a> <href="http//:www.facebook.com/leeann.van"> <img src="img/facebook-wrap.png" alt= "facebook logo"> </a> <a> <href="http//:www.twitter.com/leeann.van"> <img src="img/twitter-wrap.png" alt= "twitter logo"> </a>

2 Answers

Joel Encinas
Joel Encinas
9,683 Points

You have to put the image of twitter and Facebook inside an anchor element "<a>" and link it to your Facebook / twitter accounts, like this:

<footer>
<a href="facebook.com/your_user"><img src="img/facebook-wrap.png" alt="facebook"></a>
<a href="twitter.com/your_user"><img src="img/twitter-wrap.png" alt="twitter"></a>
<p>&copy; 2013 Nick Pettit.</p>
</footer>

Thanks so much, Joel!