Html Lists

html three types of lists is there are

1.ORDER LIST

order list or used to create list of item that in an ordered list is represented by a number or another marker

ex

<ol>

<li>first item</li>

<li>second item</li>

<li>therd item</li>

2.UNORDERLIST

unorder list are used to create list of items that do nat have a specific order or specific each item in an unordered list is respected by

ex

<ul>

<li>item1</li>

<li>item2</li>

<li>item3</li>

</ul>

3.DESCRIPTION LIST

description list are used to define terms and their correspanding description

they consist of term(<td>)add description(<add>)

pairs

ex

<dl>

<dr>term</dr>

<dd>description of term</dd>

<dt>term2</dt>

<dd>desctiption of inline2</dd>

</dl>