List: Unordered

An unordered list starts with the <ul> tag. Each list item starts with the <li> tag. The browser will mark each list items with bullets (small black circles):

HTML file: Displayed by browser:
<body>
  <ul>
    <li>Coffee</li>
    <li>Tea</li>
    <li>Milk</li>
  </ul>
</body>
  • Coffee
  • Tea
  • Milk

Back button Table of Contents Next button