HTML Unordered Lists
The <ul> tag is used to create a list. The <li> tag is used to define an item in the list. Small black circles appear among the items in the list. The <ul> tag represents an unordered list.
Example
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<ul>
<li> HTML </li>
<li> CSS </li>
<li> JAVASCRIPT </li>
</ul>
</body>
</html>