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 Add Image Gallery Content

i have watched the video to the add a image to gallery, my html is the same yet this is not working in the task

<!DOCTYPE html>
<html>
  <head>
        <meta charset="utf-8">
      <title>Hannah Betts | Designer</title>
  </head>
  <body>
    <header>
      <a href="Index.html">
        <h1>Hannah Betts</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 scr="img/numbers-01.jpg" alt="">
          <p>Experimentation with colour and texture.</p>
          </a>
        </li>
   <li>
        <a href="img/numbers-02.jpg">
          <img scr="img/numbers-02.jpg" alt="">
          <p>Blenindg styles.</p>
          </a>
        </li>
   <li>
        <a href="img/numbers-06.jpg">
          <img scr="img/numbers-06.jpg" alt="">
          <p>Glow styles.</p>
          </a>
        </li>
   <li>
        <a href="img/numbers-09.jpg">
          <img scr="img/numbers-09.jpg" alt="">
          <p>Retition sytles.</p>
          </a>
        </li>
   <li>
        <a href="img/numbers-12.jpg">
          <img scr="img/numbers-12.jpg" alt="">
          <p>Drip sytles.</p>
          </a>
        </li>   
      </ul>
    </section>
    <footer>
      <p1> &copy; 2014 Hannah Betts.</p1>
    </footer>
  </body>
</html>

3 Answers

Samantha Atkinson
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Samantha Atkinson
Front End Web Development Techdegree Graduate 40,307 Points

Hi Hannah,

Check your img code as you have typed the source as scr instead of src. So it should be < img src="img/number-01.jpg">

Hope this is in time.

Hi Hannah, looks like you have index.html capitalized. Should be <a href="index.html"> (lowercase i). Hope this works for you :smiley:.

Sreng Hong
Sreng Hong
15,083 Points

There are no <p1> tags in html

<p1> &copy; 2014 Hannah Betts.</p1>