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

Need Help

2 Answers

Talmage Shill
PLUS
Talmage Shill
Courses Plus Student 7,593 Points

Unordered lists are denoted by the < ul > tag and inside the list each item must be in a < li > tag.

UL stands for unordered list and LI stands for list item. Here is an example of how to use it:

<ul>
    <li>Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>
</ul>

I hope this helps. Let me know if there is anything else I can help clarify.

still not working

Talmage Shill
Talmage Shill
Courses Plus Student 7,593 Points

Can you please copy and paste your code so I can see your problem better?

Be very careful in what the directions are implying.

"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."