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

Bummer! Make sure you include an image tag that displays "img/numbers-01.jpg"

here is my code. Please help me out

<ul>
  <li>
    <img scr="img/numbers-01.jpg" alt="">
  </li>
  <li>
    <img scr="img/numbers-02.jpg" alt="">
  </li>
  <li>
    <img scr="img/numbers-06.jpg" alt="">
  </li>
</ul>

17 Answers

Chase Lee
Chase Lee
29,275 Points

It needs to be src not scr.

Thank you very much.

But I've one more question to ask I've coded pictures to show on my page instead of pics their captioned is showing. When I click captioned it shows pic why??

Chase Lee
Chase Lee
29,275 Points

Hmmmm...Could you show me a screenshot of that?

Chase Lee
Chase Lee
29,275 Points

Are you sure that the index.html is the root of the folder? Try making the "I" lowercase.

I did understand last part " Try making the "I" lowercase" what do you mean by this?

thanks

Main page contain hyperlink of the files I've saved in the workspace. When I click them pages opens here is code

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>RSAM | Designer</title>
  </head>
  <body>
    <header>
      <a href=index.html>
        <h1>Umair Balani</h1>
        <h2>Designer</h2>
      </a>
      <nav>
        <ul>
          <li><a href="index.html">Portfolio</a></li>
          <li><a href="about.hmtl">About</a></li>
          <li><a href="contact.html">Contact</a></li>
        </ul>
      </nav>
    </header>
    <section>
      <ul>
        <li>
          <a href="img/numbers-01.jpg">
              <img src="img/numbers-01.jpg" alt="">
              <p>Experimentation with color and texture.</p>
            </a>
        </li>
         <li>
          <a href="img/numbers-02.jpg">
              <img src="img/numbers-02.jpg" alt="">
              <p>This picture two.</p>
            </a>
        </li>
         <li>
          <a href="img/numbers-06.jpg">
              <img src="img/numbers-06.jpg" alt="">
              <p>This is picture three</p>
            </a>
        </li>
         <li>
          <a href="img/numbers-09.jpg">
              <img src="img/numbers-09.jpg" alt="">
              <p>This is picture four</p>
            </a>
        </li> 
        <li>
          <a href="img/numbers-12.jpg">
              <img src="img/numbers-12.jpg" alt="">
              <p>This is picture five</p>
            </a>
        </li>      
      </ul>
    </section>
    <footer>
      <img src="img/facebook.wrap.png" alt="Facebook Logo">

      <p>&copy; 2014 Umair Balani.</p>
    </footer>
  </body>
</html>

When I hit preview page with hyperlink of files open. In order to go the page I click link then it shows me page why??

Your help is really appreciated.

Chase Lee
Chase Lee
29,275 Points

I believe that the a tags are your problem.

How to solve this problem?

Chase Lee
Chase Lee
29,275 Points

Just get rid of the a tags around your img tags. Form this:

 <a href="img/numbers-06.jpg">
              <img src="img/numbers-06.jpg" alt="">
              <p>This is picture three</p>
            </a>

To this:

              <img src="img/numbers-06.jpg" alt="">
              <p>This is picture three</p>

Hope that helps.

Well problem still unsolved, I'm asking why my main page is not opening directly, instead it showing mean hyperlinks of files saved in workspaces.

Pics are now being showed after getting rid of "a" tags

Chase Lee
Chase Lee
29,275 Points

Could you give me a screenshot of what you're getting?

how to put img here?

I've screenshot but here its not allowing me to paste.

Chase Lee
Chase Lee
29,275 Points

Put it on an online image uploader like "Imgur" then follow the markdown cheatsheet to paste it in the forum.

here is the link

(http://http://imgur.com/user/umairbalani)

I've uploaded my main page screenshot.

Chase Lee
Chase Lee
29,275 Points

You need to link me to the actual screenshot page.

Chase Lee
Chase Lee
29,275 Points

Your pictures aren't public.

Now its public

I did understand last part " Try making the "I" lowercase" what do you mean by this?

Chase Lee
Chase Lee
29,275 Points

From Index.html to index.html.

ok

It worked thank you very very very much. I really appreciate it.