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

Please show me !!!!!!!!!!!

Some one please show me.

Thanks, Young : )

index.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Young Lorentz</title>
  </head>
  <body>
    <header>
      <a href="index.html">
        <h1>Young Lorentz</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>
          <img src= alt"">
          <img src= alt"">
          <img src= alt"">
        </li>
      </ul>
    </section>
    <footer>
      <p>&copy; 2015 Young Lorentz.</p>
    </footer>
  </body>
</html>

Hi guys--- thank you so much, ENGLISH is my 2nd language-- that's the problem : ( I do not know what is this means,...... but some one please write for me.... <img src....... etc's......

Bummer! Add three empty list items (<li></li>) to the unordered list.

Thanks a lot guys---- I am new and very slow but I am GOOD :D

THIS IS QUESTION !!!!

Inside the <section> element, create an unordered list with three blank list items. This will become an image gallery, but don’t fill in the list items just yet. Bummer! Add three empty list items (<li></li>) to the unordered list.

How can I answer this ?

This is my question--- : (

This is Young again:: Thank you all you guys---- Mr. Rich Donnellan show me how to write....
That is the best way... I can understand.... Thank you all. I really really appreciate you all you guys :)

: ) Well done! You're doing great!---- Next Task--->

I am going next step!!!

Thanks, Young*

5 Answers

Rich Donnellan
MOD
Rich Donnellan
Treehouse Moderator 27,696 Points

I'll end this here and now as I don't see this going well.

<ul>
  <li></li>
  <li></li>
  <li></li>
</ul>
Rich Donnellan
MOD
Rich Donnellan
Treehouse Moderator 27,696 Points

The challenge specifically asks you to do the following:

... create an unordered list with three blank list items ...

At no point does it say to add images (yet). Use this clue and possibly rewatch the video or Google unordered list syntax to correctly answer the question.

Hope this helps. I find it much more effective to steer you in the right direction rather than do the work for you.

–Rich

Jayden Spring
Jayden Spring
8,625 Points

If you are simply trying to turn an unordered list (<ul>) into an ordered list - change the <ul> to <ol>

ul = unordered list ol = orderer list

Otherwise if you could please elaborate on your problem.

Jayden

A Laypanov
A Laypanov
27,579 Points

You should create unordered list with 3 empty items, in you code you made unordered list with 1 item and 3 images.

Possible to type for me ?

Thanks,

Possible to type for me ?

Thanks,

The question reads: 'Inside section element create an unordered list with three blank list items. This will become an image gallery, but don't fill in the list items just yet'

Meaning:

  • Create an unordered list in the section element which you have done in your code above.

<section> <ul> <li> <img src= alt""> <img src= alt""> <img src= alt""> </li> </ul> </section>

  • However, instead of creating three blank list items, you have created ONLY ONE list item (li) and populated it with three images which is not what the question requires and that's why you are getting 'Bummer! Add three empty list items () to the unordered list.'

To solve this:

  • Create two additional empty list items which is your (li element) so you have three in total
  • Remove the three images from the first list item for now to be able to pass 'Task 1 of 2'
  • In 'Task 2 of 2' you would be asked to add the images to the list items.

NOTE: It is ONLY one image element in each list item.

Hope this helps :)