The <ul> tag in HTML is used to create an unordered list.
This list is displayed as unordered items, usually text lines or elements.
To use the <ul> tag, you need to include it between the opening <ul> tag and the closing </ul> tag. Each item in the list will be placed between the <li> and </li> tags.
<ul>
<li>Mục 1</li>
<li>Mục 2</li>
<li>Mục 3</li>
</ul>
Result