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 Include External CSS

Facebook and Twitter images not appearing.

Can someone take a look at my code and see where I'm going wrong, please? I'm following along with Notepad++ and have things working fine in there, but in Workspaces I'm having trouble.
In the Footer section, I have the link for the FB and Twitter icons, but they're not showing up when I hit Preview Workspace. Thanks!

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>James Ackerman | Web Developer</title> <link rel="stylesheet" href="css/normalize.css"> </head> <body> <header> <a href="treehouse.html"> <h1>James Ackerman</h1> <h2>Web Developer</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">
          <img src="img/numbers-01.jpg" alt="">
          <p>Experimentation with color and texture.</p>
          </a>
        </li>
        <li>
          <a href="img/numbers-02.jpg">
          <img src="img/numbers-02.jpg" alt="">
          <p>Playing with blending modes in photoshop.</p>
          </a>
        </li>
        <li>
          <a href="img/numbers-06.jpg">
          <img src="img/numbers-06.jpg" alt="">
          <p>Trying to create and 80's style of glows.</p>
          </a>
        </li>
        <li>
          <a href="img/numbers-09.jpg">
          <img src="img/numbers-09.jpg" alt="">
          <p>Drips created using Photoshop brushes.</p>
          </a>
        </li>
        <li>
          <a href="img/numbers-12.jpg">
          <img src="img/numbers-12.jpg" alt="">
          <p>Creating shapes using repetition.</p>
          </a>
        </li>         
      </ul>
    </section>
    <footer>
      <a href="http://twitter.com"><img src="img/twitter-wrap.png" alt="Twitter Logo"></a>
      <a href="http://facebook.com"><img src="img/facebook-wrap.png" alt="Facebook Logo"></a>
        <p>&copy; 2016 James Ackerman.</p>
    </footer>

</body>

</html>

Afrid Mondal
Afrid Mondal
6,255 Points

Did you upload the img folder, I mean all the images to your workspace ???

5 Answers

I believe so. All the other images are showing up except for the FB and Twitter icons. Yet, for some reason I cannot click on the img folder and see what is in there. I am also unable to drag the files into the img folder. Nor do I get a "that file already exists" type error message.

Sorry, was just able to double check and make sure that the files ARE in the img folder. Still having the same issue, though.

Addendum: I copied the file and ran it in Notepad++ and everything is working fine. Guessing it's a problem with Workspaces and Firefox not playing nice together.

Afrid Mondal
Afrid Mondal
6,255 Points

I think it's the problem of your workspace. Because i just copy your code and paste it in my workspace and it just work fine.

I understand. As long as the code is correct, everything else is a secondary issue. Thanks much! :)

Peter Gajos
Peter Gajos
1,041 Points

Weird, I have the exact same issue in Chrome. Notepad++ shows everything perfectly, whereas Workspaces doesn't.