write short note on nested list.
Answers
Answered by
4
Nesting Lists is the process of putting each item within a list (i.e. An individual list item is a list itself).
If a list A is the list item of another list B, then list A would be called a nested list.
In HTML, to implement nested lists, the code to be used is as follows:
<ul>
<li>Item A</li>
<li>Item B</li>
<ul>
<li>Sub item 1</li>
<li>Sub item 2</li>
</ul>
<li>Item C</li>
</ul>
❥︎I hope u get ....
Answered by
13
Answer:
A nested is a simple a list that occur as an element of other list which may of quotes itself be an element of other list etc common reason.
Similar questions
Computer Science,
4 months ago
Social Sciences,
4 months ago
English,
8 months ago
English,
8 months ago
Math,
1 year ago
English,
1 year ago