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 trialCheri Trego
834 PointsChallenge 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
Treehouse Project ReviewerThe 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>
Naomi Freeman
Treehouse Guest TeacherThe challenge is just asking you to set up the structure of your webpage so you can add content later :)
Cheri Trego
834 PointsCheri Trego
834 PointsIt worked and I finished the challenge thanks for all your help.