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 Build the Footer

Images

i have download and insert the images and have done all the needful things..but images are display like corrupted..including the logos..can you tell me how to fix this

8 Answers

  1. Why your <a> tags are in <ul> tag without <li> tags?
  2. Check folder "image" name
  3. Check image names
  4. Check where's your HTML file is located

In your folder where are your files for your page must be like this:

  1. folder named "image" and in this folder must be at least 5 images with this names: numbers-01.jpg, numbers-02.jpg, numbers-06.jpg, numbers-09.jpg, numbers-12.jpg...

  2. Your .html file.

Do you changed size of image, Width and height in css?

When you set width and height more then the original picture pixels it will show image like you said.

Where do I find the images?

In HTML file <img src"HERE MUST BE IMAGE LINK"> or in CSS file Backgound-image: URL (HERE MUST BE IMAGE LINK).

no i haven't done any changers .. download it as per instruction and drag it in to HTML

Show me your HTML & CSS code

</header> <section> <ul>
<a href="image/numbers-01.jpg"> <img src="image/numbers-01.jpg" alt="numbers-01"> <p>test</p> </a> <a href="image/numbers-02.jpg"> <img src="image/numbers-02.jpg" alt="numbers-02"> <p>test</p> </a> <a href="image/numbers-06.jpg"> <img src="image/numbers-06.jpg" alt="numbers-06"> <p>test</p> </a> <a href="image/numbers-09.jpg"> <img src="image/numbers-09.jpg" alt="numbers-09"> <p>test</p> </a> <a href="image/numbers-12.jpg"> <img src="image/numbers-12.jpg" alt="numbers-12"> <p>test</p> </a>

  </ul>
</section>

Thanks .. the error is with rename folder... Thanks Again