0% found this document useful (0 votes)
14 views1 page

Types of Lists in HTML Explained

The document describes two types of lists: ordered and unordered. An ordered list is a numbered list used for items with a specific order, while an unordered list is a bulleted list for items without a specific order.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
14 views1 page

Types of Lists in HTML Explained

The document describes two types of lists: ordered and unordered. An ordered list is a numbered list used for items with a specific order, while an unordered list is a bulleted list for items without a specific order.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

<html>

<head>
<title>
</head>
<body>
<dl>

<dt> ordered list </dt>


<dd> It is a numbered list .It is used when the items
have a specific order .</dd>
<dt> Unordered list</dt>
<dd> It is a bulleted list .It is used when the items
do not have a specific order . </dd>

</dl>

</body>
</html>

You might also like