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

Code challenge workspace not functioning correctly

When I check my work it says "bummer" my image tag is missing but I thought I put it in

index.html
<!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/mumbers-01.jpg">
            <img src="img/numbers-01.jpg" alt="">
            <p>Experimentation with color and texture.</p>
          </a>
        </li>
        <li>
          <a href="img/mumbers-02.jpg">
            <img src="img/numbers-02.jpg" alt="">
            <p>Playing with blending modes in Photoshop.</p>
          </a>
        </li>
        <li>
          <a href="img/mumbers-06.jpg">
            <img src="img/numbers-06.jpg" alt="">
            <p>Trying to create an 80's style of glows.</p>
          </a>
        </li>
      </ul>
    </section>
    <footer>
      <p>&copy; 2013 Nick Pettit.</p>
    </footer>
  </body>
</html>

4 Answers

xyraine
xyraine
1,669 Points

Hi Viki,

Looks like you went a step ahead. Easy there! :) The instructions required you to create an unordered list but without filling the list items. Something like this:

<section> <ul> <li></li> <li></li> <li></li> </ul> </section>

thanks but I was past that step. I'm using firefox and it should be in safe mode because I've been having problems with the challenge workspace. I found I have to click on the top lines to get the cursor & arrow down. I'm now trying to add the image tags but after typing them in -- failed, I tried dragging from img file -- failed, so I copied my work from my practice workspace -- failed.

xyraine
xyraine
1,669 Points

Strange. The link brought me to the previous challenge. I've been using Google Chrome and I've had no issues with it so far. Maybe you could switch browsers or update your Firefox.

As for the code challenge, I'm not entirely sure which one you are on. Do you have the link?

Thanks for the help xyraine! I have to stop working on this for few - several hours now. I will work on your suggestions & get back to this later tonight. I really appreciate your input :-)

xyraine
xyraine
1,669 Points

My pleasure. I'm still learning as well. I hope I can be more helpful in the future. Things may get frustrating at times so taking a break is very helpful once in awhile! :) Don't give up!

-Ryan