Welcome ðŸŽ‰

logo

ReactLMS

Search
Light Mode
Contact Us

1 min to read

Contact us

No results for your search.
Sorry, an unexpected error occurred

Concept


The <ul> tag in HTML is used to create an unordered list.

This list is displayed as unordered items, usually text lines or elements.


How to use


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

  • Mục 1
  • Mục 2
  • Mục 3



Read more
On This Page