Adding ordered and unordered list to HTML.
ADDING ORDERED AND UNORDERED LIST. In html we can add and list the items in very well mannered order there are two types of lists , those are 1) ordered list . 2) unordered list. : ORDERED LIST ordered list is the collection of many items in a systematic manner and neatly represented in the given order by the user ordered list is very easy to execute and to implement it............................ <ol> this is the syntax of ordered list # first we must open the tag <ol> # In the tag we can specify the type of listings like numbers,alphabets,roman numbers and many more etc. ie <ol type="1"> this tag specifies the list type is numerical. # next after the ordered list tag we have to specify the list items ie <li> item name </ li>. # at the end we can end/close the ordered list tag . ie </ol> EXAMPLE: ...