Recall & Review
beginner
What is a nested list in HTML?
A nested list is a list placed inside another list item. It helps organize information in a hierarchy, like chapters and subchapters in a book.
Click to reveal answer
beginner
Which HTML tags are used to create nested lists?
You use <ul> or <ol> tags inside a <li> tag to create nested lists. <ul> is for unordered (bulleted) lists, and <ol> is for ordered (numbered) lists.
Click to reveal answer
beginner
How does nesting lists help in real life?
Nesting lists helps show details clearly. For example, a grocery list can have categories like Fruits, and inside Fruits, you list Apples, Bananas, etc.
Click to reveal answer
intermediate
What is the correct way to nest an ordered list inside an unordered list?
Place the <ol> inside a <li> of the <ul>. For example:<br>
<ul>
<li>Item 1
<ol>
<li>Subitem 1</li>
</ol>
</li>
</ul>Click to reveal answer
intermediate
Can you nest multiple levels of lists in HTML?
Yes, you can nest lists as many levels as you want. Each nested list goes inside a <li> of the parent list, creating a clear structure.
Click to reveal answer
Which tag is used to start an unordered list in HTML?
✗ Incorrect
The
- tag starts an unordered (bulleted) list.
Where do you place a nested list inside the parent list?
✗ Incorrect
Nested lists must be inside a element of the parent list.
What happens if you put a nested list outside a <li>?
✗ Incorrect
Placing nested lists outside is invalid HTML and may cause unexpected display.
Which of these is a valid nested list structure?
✗ Incorrect
Option B correctly nests a
- inside a
- .
Can you mix ordered and unordered lists in nesting?
✗ Incorrect
HTML allows mixing ordered and unordered lists in nesting.
Explain how to create a nested list in HTML and why it might be useful.
Think about how you organize items in groups and subgroups.
You got /3 concepts.
Describe the rules for placing nested lists inside parent lists in HTML.
Focus on where the nested list tags go in the HTML structure.
You got /3 concepts.