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

Stuck

Hello there! I am stuck with this challenge. To my opinion, I did what the challenge is asking for but the: "Bummer! Make sure you include an image tag that displays "img/numbers-01.jpg" keeps popping out. I did a copy/paste from my Workspace so, could that be part of the problem? Thank you and by the way, if there is anybody around who speaks spanish, that will be a plus, because this is my first language;)

Could you add your code to this post so I can see what maybe wrong you can use the Markdown Cheatsheet under the comment box to help you embed code. Sorry I don't speak Spanish although I would love to learn it.

Google Translate ¿Es posible añadir el código a este post para que pueda ver lo que tal vez equivocada puede usar el Markdown de trucos bajo la caja de comentarios para ayudar a incrustar código. Lo siento, no hablo español, aunque me encantaría aprender.

3 Answers

No problem. The question says to add the images without any links so you need to do it the following way

Translate - No hay problema. La pregunta dice para agregar las imágenes sin ningún enlace por lo que deberá hacerlo de la siguiente manera

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

Also I added the correct mark down for you. If you click edit on your reply you can see how it is done. Hope these translations help

Translate - También he añadido la marca correcta en relación con usted. Si hace clic en editar en su respuesta se puede ver cómo se hace. Espero que estas traducciones ayudan

Thanks so much for your quick response and interest Adam. I saw your answer but I couldn't reply right away. Sorry about that. But here is my code from the challenge I am stuck with

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Nick Pettit</title>
  </head>
  <body>
    <header>
      <a href="index.html">
        <h1>Nick 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/numbers-01.jpg">
            <img src="img/numbers-01.jpg" alt="">
         </a>        
        </li>
        <li>
     <a href="img/numbers-02.jpg">
            <img src="img/numbers-02.jpg" alt="">
         </a>        
        </li>
        <li>
         <a href="img/numbers-06.jpg">
            <img src="img/numbers-06.jpg" alt="">
          </a>
        </li>
      </ul>
    </section>
    <footer>
      <p>&copy; 2013 Nick Pettit.</p>
    </footer>
  </body>
</html>

I didn't get very well the Markdown Cheatsheet... But hopefully this is ok for you. And don't worry about translating, it was nice of you to put it down in Spanish too, but I think I am able to get pretty much everything in English. I think that it would be nice to be in contact with some spanish speaking dudes in order to communicate each other faster through our first language but, I am ok. Muchas gracias!

Got it Adam! Thank you so much!