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

What is wrong with my html code?

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Marco B| The Munch</title>
  </head>
  <body>
    <header>
      <a href="index.html">
        <h1>Marco Bintoro</h1>
        <h2>The Munch</h2>
      </a>
      <nav>
        <ul>
          <li><a href="index.html"></a></li>
          <li><a href="about.html"></a></li>
          <li><a hred="contact.html"></a></li>
        </ul>
      </nav>
  </header>
  <section>
    <ul>
    <li>
      <a href"img/numbers-01.jpg">
        <img scr="img/numbers-01.jpg" alt="">
        <p>Experimentation with a bunch of junk</p>
      </a>
    </li>
        <li>
      <a href"img/numbers-02.jpg">
        <img scr="img/numbers-02.jpg" alt="">
        <p>Failing</p>
      </a>
    </li>  
        <li>
      <a href"img/numbers-06.jpg">
        <img scr="img/numbers-06.jpg" alt="">
        <p>Triple Failing</p>
      </a>
    </li>  
        <li>
      <a href"img/numbers-09.jpg">
        <img scr="img/numbers-09.jpg" alt="">
        <p>Failing to the max</p>
      </a>
    </li>  
        <li>
      <a href"img/numbers-012.jpg">
        <img scr="img/numbers-012.jpg" alt="">
        <p>Over 9000.</p>
      </a>
    </li>  
  </ul>
</section>
<footer>
      <p>&copy; 2015 The Munch Reborn</p>
    </footer>
  </body>
</html>
Dane Parchment
Dane Parchment
Treehouse Moderator 11,077 Points

Can you show us your code, and explain what it is you are trying to do, and what exactly is going wrong? Can't help If I do not know what I am looking for.

My pictures dont show

Dane Parchment
Dane Parchment
Treehouse Moderator 11,077 Points

Again, please show the code, I need to know if you are making a syntax error, or referencing the wrong img folder (if there is a folder).

Edit: Ah, the picture showed up as i submitted this.

2 Answers

Hey Marco, in the a href you're missing the "=" symbol to set the url

Hi Marco, It looks like you have some wonderful folks helping you. Just for the future, sometimes you do not need to put : img/ depending on how your files are set up. Sooo much to think about !