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

Hello, it gives me the please make sure you display the number-01 immage, what am I doing wrong?

https://dummyimage.com/640x4:3/

this is the entire code, i checked it a lot in the past couple of days, could you help me out?

index.html
<!DOCTYPE html>
    <html> 
      <head>
        <meta charset="utf-g">
        <tittle>Mihai | Designer</tittle>

      </head>
        <body>
          <header>
           <a href="index.html">

                    <h1>Mihai Ijac</h1>
                    <h2>Designer</h2>
             </a>
            <nav>
            <ul>
             <li><a href="index.html">Portfolio</a></li>
              <li><a href="about.html">About</a></li>
              <li><a href="contact.html">Contact</a></li>
             </ul>
            </nav>


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


            </ul>
          </section>
          <footer>
            <p>&copy; 2014 Mihai Ijac.</p>
          </footer>

        </body>
    </html>

<!DOCTYPE html> <html> <head> <meta charset="utf-g"> <tittle>Mihai | Designer</tittle>

  </head>
    <body>
      <header>
       <a href="index.html">

                <h1>Mihai Pettit</h1>
                <h2>Designer</h2>
         </a>
        <nav>
        <ul>
         <li><a href="index.html">Portfolio</a></li>
          <li><a href="about.html">About</a></li>
          <li><a href="contact.html">Contact</a></li>
         </ul>
        </nav>


      </header>
      <section>
      <ul>
        <li>
          <a href="img-01.jpg">
            <img src="ïmg/numbers-01.jpg" alt =""> 
            <p>Experimentation with collor and texture.</p>
          </a>

        </li>
        <li>
          <a href="img-01.jpg">
            <img src="ïmg/numbers-01.jpg" alt =""> 
            <p>Experimentation with collor and texture.</p>
          </a>

        </li>
        <li>
          <a href="img-01.jpg">
            <img src="ïmg/numbers-01.jpg" alt =""> 
            <p>Experimentation with collor and texture.</p>
          </a>

        </li>
        <li>
          <a href="img-01.jpg">
            <img src="ïmg/numbers-01.jpg" alt =""> 
            <p>Experimentation with collor and texture.</p>
          </a>

        </li>
        <li>
          <a href="img-01.jpg">
            <img src="ïmg/numbers-01.jpg" alt =""> 
            <p>Experimentation with collor and texture.</p>
          </a>

        </li>


        </ul>
      </section>
      <footer>
        <p>&copy; 2014 Mihai Ijac.</p>
      </footer>

    </body>
</html>

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there! You're doing well, but you've missed part of the instructions. Take a look:

Leave the alt attributes blank, and don’t add any captions or links.

You did leave the alt attributes blank, you didn't add any captions, but every one of your pictures is surrounded by an anchor tag <a></a>. This is the tag that creates a link. Try removing the anchor tags, and your code should pass!

Hope this helps! :sparkles:

edited for additional note

In the first code snippet posted there were no captions. In the second code snippet there are. You should remove the captions to match the requirements of the challenge.