"<ul>" tag is used in HTML for showing unordered list. It's showing bullets points in web page by default. We can change these bullets points in circle, disc, square by using "list-style-type".
Example
<!Doctype Html>
<html>
<head>
<title>Unordered List</title>
</head>
<body>
<ul>
<li>First</li>
<li>Second</li>
<li>Third</li>
</ul>
</body>
</html>
Output
Copyright ©2022 coderraj.com. All Rights Reserved.