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

First, I do not know how to post my code on this forum. Lastly, the numbers-12.jpg is not showing on site

I checked my index.html and everything seems okay, but still can not find the bug.

4 Answers

Joshua,

Be careful of the syntax used in your href and src addresses. If you are trying to reference the image file numbers-12.jpg, you'll need to remove the 0 included in that file name. If the link varies in the slightest, including capitalization differences, it will produce an error.

I'd update your code to be as follows:

<li>
   <a href="img/numbers-12.jpg">
      <img src="img/numbers-12.jpg" alt="">
      <p>Creating shapes using repetition</p>
   </a>
</li>

I hope that helps!

Thank you!!

Here's a link to instructions to post code: https://teamtreehouse.com/forum/posting-code-to-the-forum

I posted it, your help would be greatly appreciated!

Joshua,

As noted earlier by Ben, you have to remove the 0 in numbers-012.jpg. The code should be numbers-12.jpg.

Happy Learning!

Thank You!

          <li>
            <a href="img/numbers-012.jpg">
              <img src="img/numbers-012.jpg" alt="">
              <p>Creating shapes using repetition</p>
            </a>
          </li>