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 Structure the Image Gallery

Have checked every character of the <img src="img/numbers-01.jpg" alt=""> line, when I review, the image won't show. :(

When I review I just get another bullet point below the ones for Portfolio, About and Contact. I've redownloaded the packet and reuploaded the images and it still won't work. Not sure what I'm doing wrong. I've compared my Workspace to Andrews work over and over again. :/

Can you post your code so we can examine it? Here's a great post on how to post code to the forums: https://teamtreehouse.com/forum/posting-code-to-the-forum

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Royce Treichler Jr | Designer</title>
  </head>
  <body>
    <header>
      <a href="index.html">
        <h1>Royce Treichler Jr</h1>
        <h2>Designer</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>
          <img src="img/numbers-01.jpg" alt="">
        </li>
      </ul>
    </section>
    <footer>
      <p>&copy; 2014 Royce Treichler Jr.</p>
    </footer>
  </body>
</html>

I've edited your comment so that the code shows correctly. You needed 3 backticks and the type of code you're posting.

Could you also link to the preview of your workspace, or describe what you're seeing in more detail?

It sounds like you're saying that the image isn't showing up. Is that it?

Thank you, I'll have to remember that. :) http://web-0ffqcdlmha.treehouse-app.com/ and yes, the image will not show. It does however add a new bullet point on the left side.

That's a link to the workspace itself, which nobody but you can view. Press preview, and copy the link from the page it shows you.

Is it possible you've made a mistake in the path to the image? For example, maybe your "img" folder is actually named "imgs", and that's making it not appear? Or maybe you don't have an "img" folder at all?

Yeah, I realized that and fixed that link to my preview. However, I named my damn folder "image" instead of "img".. changed it and what do you know.. it worked. Thanks Bryan for your patience and help. Appreciate it. I hate being a noob. :P

Any time, Royce!

Good luck with the rest of the course!