HTML Lists are of two types
1. Ordered list, tag used for this is " ol "
2. Unordered list, tag used for this is " ul "
Example
<ul>
<li>First</li>
<li>Second</li>
<li>Third</li>
</ul>
Output
Copyright ©2022 coderraj.com. All Rights Reserved.