HTML Unordered list, tag used for this is "ol"
Example
<!Doctype Html>
<html>
<head>
<title>Ordered List</title>
</head>
<body>
<ol>
<li>First</li>
<li>Second</li>
<li>Third</li>
</ol>
</body>
</html>
Output
Copyright ©2022 coderraj.com. All Rights Reserved.