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

It tell me to make sure you include image tag to number-01.jpg

<a href="img/numbers-01.jpg"> <img src="img/numbesr-01.jpg" alt=""> <p>Experimentation with color and texture.</p> </a>

5 Answers

rydavim
rydavim
18,813 Points

If you provide more context for your question, you'll be more likely to get the specific answer you need.

In this case, my guess is that it's just a minor typo. Your link in the code posted above has a small error in the name of the image file.

<a href="img/numbers-01.jpg"> <img src="img/numbesr-01.jpg" alt=""> <p>Experimentation with color and texture.</p> </a> I keep getting include an image tag that displays ="img/numbers-01.jpg">

rydavim
rydavim
18,813 Points

In the code you're linking above, there is a typo in your image link. You've got "numbesr", which is probably what's triggering the message.

<img src="img/numbers-01.jpg" alt="">

just a little confused

ok I change it

Thank I put <img src="img/numbers-06.jpg" alt=""> and it worked