HTML: Nested lists
When making a to-do list, it may be necessary to break items down into several additional sub-items. For example, in the to-do list, the item "Go to the store" may contain a shopping list.
Nested lists are used to create this structure. This allows you to insert a new list as a list item, rather than just text, creating a complex structure:

In HTML it looks like this:
<ul>
<li>Go to the store
<ul>
<li>Buy milk</li>
<li>Buy bread</li>
</ul>
</li>
<li>Take a class on Code Basics </li>
</ul>It is important to note that the nested list is part of the list item and is inside the <li> tag:
<li>Go to the store
<ul>
<li>Buy milk</li>
<li>Buy bread</li>
</ul>
</li>This nesting allows you to preserve semantics and indicate that the nested list refers specifically to "Go to the store" and not to any other item.
You can nest different kinds of lists into each other: bulleted into numbered and vice versa. The main thing is to monitor the opening and closing of tags. In the case of an error, the browser will try to correct the error itself, but it may not be correct.
Instructions
Create the markup for the list:
- The JavaScript profession
- Frontend
- Backend
- The PHP Profession
Tips
At each nesting level the labeled list changes its marker. This is done to visually distinguish nested lists
If you've reached a deadlock it's time to ask your question in the «Discussions». How ask a question correctly:
- Be sure to attach the test output, without it it's almost impossible to figure out what went wrong, even if you show your code. It's complicated for developers to execute code in their heads, but having a mistake before their eyes most probably will be helpful.
HTML: Nested lists
When making a to-do list, it may be necessary to break items down into several additional sub-items. For example, in the to-do list, the item "Go to the store" may contain a shopping list.
Nested lists are used to create this structure. This allows you to insert a new list as a list item, rather than just text, creating a complex structure:

In HTML it looks like this:
<ul>
<li>Go to the store
<ul>
<li>Buy milk</li>
<li>Buy bread</li>
</ul>
</li>
<li>Take a class on Code Basics </li>
</ul>It is important to note that the nested list is part of the list item and is inside the <li> tag:
<li>Go to the store
<ul>
<li>Buy milk</li>
<li>Buy bread</li>
</ul>
</li>This nesting allows you to preserve semantics and indicate that the nested list refers specifically to "Go to the store" and not to any other item.
You can nest different kinds of lists into each other: bulleted into numbered and vice versa. The main thing is to monitor the opening and closing of tags. In the case of an error, the browser will try to correct the error itself, but it may not be correct.
Instructions
Create the markup for the list:
- The JavaScript profession
- Frontend
- Backend
- The PHP Profession
Tips
At each nesting level the labeled list changes its marker. This is done to visually distinguish nested lists
If you've reached a deadlock it's time to ask your question in the «Discussions». How ask a question correctly:
- Be sure to attach the test output, without it it's almost impossible to figure out what went wrong, even if you show your code. It's complicated for developers to execute code in their heads, but having a mistake before their eyes most probably will be helpful.
Your exercise will be checked with these tests:
const { test } = require('tests');
test(({ query, querySelectorAll, expect }) => {
const ol = query(document, 'ol', HTMLOListElement);
const olLis = querySelectorAll(document, 'ol > li', HTMLLIElement);
expect(olLis).to.have.length(2);
const ul = query(document, 'ol > li > ul', HTMLUListElement);
const ulLis = querySelectorAll(ul, 'li', HTMLLIElement);
expect(ulLis).to.have.length(2);
});Teacher's solution will be available in:
20:00
