The <li> HTML element is used to represent an item in a list.
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-1
<ul>
<li>First</li>
<li>Second</li>
<li>Third</li>
</ul>
Output
Copyright ©2022 coderraj.com. All Rights Reserved.