
HOW TO MAKE HTML LISTS?
HTML lists are a record of information, such as names of students, usually written on each line and ordered in a way that makes a particular thing easy to find.
There are three different types of HTML lists:
1. Ordered List or Numbered List
2. Unordered List or Bulleted List
3. Description List or Definition List
Ordered List or Numbered List
- An ordered list is a list with numbers in an order ascending or descending. In this, each item is prefaced with a number. The tags used for this are <ol> </ol>.
- You can start a numbered list with a value other than 1 (or A, a, I, i).
CODE
<!DOCTYPE html>
<html>
<head>
<title>Exam With Ai</title>
</head>
<body>
<ol>
<li>Computer Fundamentals</li>
<li>Operating System</li>
<li>LibreOffice</li>
<li>Internet</li>
<li>File Extensions</li>
<li>Shortcut Keys</li>
</ol>
</body>
</html>
OUTPUT

Unordered List or Bulleted List
- This is unordered. In this, each item is prefaced with a bullet. The tags used for this are <ul> </ul>.
- Bullet types are disc, circle, or square.
CODE
<!DOCTYPE html>
<html>
<head>
<title>Exam With Ai</title>
</head>
<body>
<ul>
<li>Computer Fundamentals</li>
<li>Operating System</li>
<li>LibreOffice</li>
<li>Internet</li>
<li>File Extensions</li>
<li>Shortcut Keys</li>
</ul>
</body>
</html>
OUTPUT

Definition List or Description List
The definition list is created with the <dl> element and usually consists of a series of terms and their definitions. Inside the <dl> element, you will usually see pairs of <dt> and <dd> elements.
CODE
<!DOCTYPE html>
<html>
<head>
<title>Exam With Ai</title>
</head>
<body>
<dl>
<dt>HTML</dt>
<dd>Hypertext Markup Language documents are ASCII or plain text documents that drive the World Wide Web.</dd>
<dt>Internet</dt>
<dd>The Internet is a combination of many networks and a large number of databases and other services.</dd>
</body>
</html>
OUTPUT
