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

Connie Cooper
1,229 Pointscode to find out how to fix my facebook wrap ....
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Connie Cooper Photographer| </title> <link rel="stylesheet" href=css/normalize.css"> <style> nav a { color:white; background-color: orange; } </style> <head> <body> <header> <a href="index.html"> <h1>Connie Cooper</h1> <h2>Photographer</h2> <a> <nav> <ul> <li><a href="index.html">Portfolio</a></li> <li><a href="about.html">About</a></li> <li><a href="contact.html">Contact</a></li> </ul> </nav> </header> <section> <ul> <li> <a href="img/numbers-01.jpg"></a> <img src="img/numbers-01.jpg"alt=""> <p>Experimentation with color and texture.</p> </li> </ul> </section> <footer> <img src="img/facebook-wrap.png" alt="Facebook Logo"> <p>Ā© 2014 Connie Cooper.</p> </footer>
<body> </html> <li> <a href="img/numbers-02.jpg"></a> <img src="img/numbers-02.jpg"alt=""> <p>Playing with blending modes in photoshop.</p> </li> <li> <a href="img/numbers-01.jpg"></a> <img src="img/numbers-01.jpg"alt=""> <p>Trying to create an 80's style of glows.</p> </li> <li> <a href="img/numbers-01.jpg"></a> <img src="img/numbers-01.jpg"alt=""> <p>Drips created with Photoshop brushes.</p> </li> <li> <a href="img/numbers-01.jpg"></a> <img src="img/numbers-01.jpg"alt=""> <p>Creating shapes using repetition.</p> </li>
3 Answers

Rob Brink
7,148 PointsNot sure what seems to problem here? could you explain more so we can better understand and help you.

akin
Courses Plus Student 2,865 PointsHi Connie ; I think img tag and p tag will be inside footer tags at the bottom of the page ... And li tags will be inside of section tags.

Connie Cooper
1,229 PointsWell I have the Facebook wrap in the correct place I believe..... but when I refresh the browser and look at it , the facebook logo is up further in the page. It is suppose to be at the very bottom but don't know where I am suppose to put it so that it goes to the end of the page.

akin
Courses Plus Student 2,865 PointsBefore body closing tag at the bottom of the page you must add footer tags and facebook logo and other paragraph must be between these footer tags...