Computer Science, asked by jaindrasingh599, 11 months ago

IN HOW MANY WAYS CAN YOU CREATE LISTS ? WRITE THE PROCEDUE TO DO SO.

Answers

Answered by dharmanikita
10

Answer:

Hope this answer convinces you

Attachments:
Answered by Tulsi4890
18

       Lists are a part of everyday life like to do list, navigational rout list etc and they can be created in many ways.

  • HTML has couple of kind of lists too but they have a specific method for creating these lists.
  • The two types of list in HTML are ordered list and unordered list.  
  • Ordered list command starts with <ol> and ends with </ol>.
  • Between them need to put command <li> and </li> for every list item in an orderly fashion.  
  • Unordered list command starts with <ul> and ends with </ul>.
  • Same as ordered list it uses <li> and </li> command to list items.
Similar questions