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

Challenge task 1 of 3

What do I need to add to create 3 empty list items to unordered list that will become my image gallery. After several attempt I am not sure what the challenge is asking for.

2 Answers

Emma Willmann
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Emma Willmann
Treehouse Project Reviewer

The challenge is asking you to first create an unordered list inside the section element. Then inside that list, you need to create 3 list items, with nothing inside them. (You will put pictures/links into them later).

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

It worked and I finished the challenge thanks for all your help.

Naomi Freeman
STAFF
Naomi Freeman
Treehouse Guest Teacher

The challenge is just asking you to set up the structure of your webpage so you can add content later :)