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

footer info not appearing on site

how do I get the info I've entered into the footer (the copyright and Facebook logos) to appear on the site? I noticed that the code I've entered in the footer section for Facebook and copyright doesn't translate to Facebook and copyright information appearing on the footer of the website. Concurrently, I'm seeing that the footer section of the code is not multi-colored like the rest of my code . Is this an indicator that I've not correctly written my code? It appears that work space tends to have code components identified by assigning them a color when the code is written (correctly). Looks like I might have gone astray.

Thank you for your help.

screenshot

link to website http://port-80-fy7dbdbbkp.treehouse-app.com/

Hey guys, thank you for all of your help. the footer is not appearing, but i'm seeing the following closing tags highlighted at the bottom of my work space: footer body and html.

<footer> <a href="http://twitter.com/nickrp"><img src="img/twitter-wrap.png" alt="Twitter Logo"> </a>

<a href="http://facebook.com/nickpettit"></a> <img src="img/facebook-wrap.png" alt="facebook Logo"> </a>

<p> © 2016 Mich.</p>

</body> </footer> </html>

hey guys, thank you all for the help. i fixed my problem.

6 Answers

Here is some of my code. Maybe it will help. I cannot see your screenshot. I just did that section a few days ago.

  <footer>
    <a href="https://twitter.com/itsDLauterbach"><img src="img/twitter-wrap.png" alt="Twitter Logo"></a>
    <a href="https://www.facebook.com/desiree.lauterbach.7"><img src="img/facebook-wrap.png" alt="Facebook Logo"></a>
    <p>&copy; 2016 Desiree Lauterbach.</p>
  </footer>
</div>
</body>

</html>

thank you. how did you post your screen shot?

I can not see your screenshot. However, if the footer code is not highlighting this is usually an indicator that something in your code before that point is incorrect. More than likely you miss typed something, forgot a closing tag, or some small syntax error such as a missing a quotation mark. Just double check all your code up to the point it is not highlighting anymore. Hope you find your bug.

thank you

I ctrl+C (copied it) then ctrl+V (pated it) in the reply box here. When I hit submit it translated it into this image.

I am now taking this, and recommend you watch it. It shows how to do it from workspaces directly & other handy things. https://teamtreehouse.com/library/using-treehouse-workspaces

thank you so much. I will do that.

you need a > at the end of the image line before the </a>

thank you

also you have you closing anchor tag as <a/> instead of </a>

Hello Michelle, You have to close you <img> tag with </img> and close your <a> tag with </a>.