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 need help with this challenge

I am confused on what I need to do can someone help me?

2 Answers

Kevin Kenger
Kevin Kenger
32,834 Points

Hey Seth,

OK this challenge wants you to add two images located in the "img" folder to the <footer> element with alternate attributes. The first image is the "facebook-wrap.png."

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

So to break it down, the <img> tag is used to incorporate images into your page, the src attribute is where we specify the location of our image (in this case, it's in the "img" folder, and it's called "facebook-wrap.png"), and the alt attribute is the alternate text we can supply for users the can't view images and for better SEO, among other things.

I hope that helps you to understand it a little better!

Hey Kevin thank you for spending the time and helping me out I wish they can do a virtual practice mode show me first where to put what then go back and do it your self