Computer Science, asked by silentkiller77, 8 months ago

write short note on nested list.​

Answers

Answered by Anonymous
4

\huge{\purple{\underline{\underline{\bf{\pink{Answer}}}}}}

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 freefire98
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