Computer Science, asked by nick200744, 11 months ago

Write the HTML list for the following.
Nested list
1.one

a. two
b. three
c. four
2.five
3. Six​

Answers

Answered by MickeyandMinnie
1

Answer:

<html>

<body>

<ul>

   <li>1.one

   <ul>

     <li>a. two</li>

     <li>b. three</li>

       <li>c. four</li>

         </ul>

 </li>

 <li>2.five</li>

 <li>3. Six​</li>

</ul>

</body>

</html>

Similar questions