I'm stuck on this problem

Hi,

ul and li elements are not indentation. You do not need them to solve this lesson and in fact won’t pass if you use them here. ul and li are list elements, they have nothing to do with code indenting.

Indentation just means putting spaces in front of code.

The ul and li elements were used as an example to show what indentation looks like. Not as something you need to add.

Here is another example of indentation. The h1 and p are two spaces from the edge of the page to indicate they are the child elements of the main.

<main>
  <h1>Hello world</h1>
  <p>Example paragraph</p>
</main>

This page gives you more information about the ul element and what it is used for.

This page gives you more information about indentation.

Thanks a lot. They were just spaces that I had to mark… I thought I had to indent the page. but it was just making spaces in the codes for a better reading! thank you very much to all!

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.