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 trialMUZ140996 Simbarashe Gombedza
3,813 PointsAdding images
how to add a social network wrap such as twitter
3 Answers
Samuel Webb
25,370 PointsBy using the img tag. They're just images called facebook-wrap.png or whatever social network. You can add them by using the same tag that is used for the other images in the html document. Add them right after the p tag inside of the footer.
Levent Εen
1,775 PointsHi sir , i think u forget to close footer element. + you forget " " them too. example usage <img src=" " alt=" ">
<footer> <img src="img/facebook-wrap.png" alt="facebook logo"> <img src="img/twitter-wrap.png" alt="twitter logo"> </footer>
Ron Horn
7,591 PointsSamuel Webb has the right structure:)
Nice work Sam!
MUZ140996 Simbarashe Gombedza
3,813 PointsMUZ140996 Simbarashe Gombedza
3,813 Points</section> <img src=img/facebook-wrap.png alt="facebook logo"> <img src=img/twitter-wrap.png alt="facebook logo"> <footer>
Thats what l did and its writing me an error msge
Samuel Webb
25,370 PointsSamuel Webb
25,370 PointsThe instruction say to put it inside of the footer element. Also, you didn't put quotes around the image paths. Same as Levent said below. Your footer code should look like this: