You are on page 1of 1

html lists

html lists are used to specify lists of information . all lists may contain one or
more list elements. there are three different types of html lists.

. ordered list or numbered list (ol)


. unordered list or bulleted list(ul)
. description list or defination list (dl)

ordered list or numbered list

all the list items are marked with numbers by default.

<ol>
<li>aries</li>
<li>bingo</li>
<li>leo</li>
<li>oracle</li>
</ol>

types:
1,l,i,A,a
I = capital I stands for roman counting or agar small chaiye tho samll i dalo
<ol mai
A = it is stands for alphate

unordered list or bulleted list(ul)

all the list items are marked with bullets

<ul>
<li>aries</li>
<li>bingo</li>
<li>leo</li>
<li>oracle</li>
<ul>

types:
disc,circle,square,none.

description list or defination list (dl)

Entries are listed like a dictionary or encyclopedia.

<dl>
<dt>HTML</dt> <dt>= data term
<dd>is a mark up language</dd> <dd>=data defination
<dt>java</dt>
<dd>is a programing languae</dd>
</dl>

You might also like