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 Build a Simple Website Text Editors and HTML Images and Lists

Challenge task 3 of 4 (Web Design)

Hello, I am having trouble passing this challenge! Can anybody give me a hand?

Thank you P.S. It's in the text editor (index.html)

1 Answer

Add an empty unordered list below the image.:

Here is the Mozilla docs for the unordered list element.

The challenge is asking you to place an empty unordered list element on the page.

<!-- This is what a non-empty unordered list looks like -->
<ul>
  <li>item 1</li>
  <li>Item 2</li>
  <li>Item 3</li>
</ul>

So if the question is asking for an empty unordered list, just modify the code above to be empty. That is, to have no items.