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 Organize with Unordered Lists

I Don't Understand...

I don't understand what I'm doing wrong with my code, here:

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

10 Answers

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

Can you copy and paste your code so we can take a look?

Okay, this is REALLY not working out for me - I, just, tried to copy and paste - It's NOT working....

You have to put ``` before and after your code for it to show up in the forum. That's why its not showing up

Here are all three of my codes that I'm trying to work with:

<li><a href="img/numbers-01.jpg">/li> <li><a href="img/numbers-02.jpg">/li> <li><a href="img/numbers-06.jpg">/li>

Not sure if this was the right challenge:

Inside the three new list items, add the following images from inside the img folder: "numbers-01.jpg", "numbers-02.jpg", and "numbers-06.jpg". Leave the alt attributes blank, and don’t add any captions or links. Just the images!

Your on the right path,but if it is you're on the right path. You don't need the <a> tag. I think you might confusing the alt attribute. You don't need the <a.> tag and any attributes.

<section> <ul> <img> </ul> </section>

I hope this help you

We'll see - Cross-your-fingers for me, huh?...

lol

It worked out - Thanks...

Nice!

what was your final answer?