<ul>
tag
Represents an unordered list of items, typically rendered with bullet points.
Syntax
<ul>\n <li>item</li>\n</ul>
Example
html
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>