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

Help footer, how to build a website

I checked the code for the footer several times and I cannot find the error. I get red flags suggesting a code error.

<footer>      
   <a href="http://twitter.com/pancho90"></a>
<img src="img/twitter-wrap.png" alt="twitter logo"></a> 
   <a href="http://facebook.com/fsandoval7"></a> 
 <img src="img/facebook-wrap.png" alt="Facebook logo"></a>    
   <p>&copy; 2014 Francisco Sandoval</p>
 </footer>
         </div>


         </body>         

        </html>

3 Answers

/*remove your </a> at the end of the href your closing <a> the two times*/
 <a href="http://twitter.com/pancho90">
<img src="img/twitter-wrap.png" alt="twitter logo"></a> 
   <a href="http://facebook.com/fsandoval7">
 <img src="img/facebook-wrap.png" alt="Facebook logo"></a>    
   <p>&copy; 2014 Francisco Sandoval</p>
 </footer>
         </div>


         </body>         

        </html>

remove your </a> at the end of the href your closing the <a> to times

Thank you!!!

Your welcome!