Horje
How to create Unordered HTML List

An unordered list starts with the <ul> tag. Each list item starts with the <li> tag.


Full Example of Unordered HTML List

The list items will be marked with bullets (small black circles) by default:
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h2>An unordered HTML list</h2>

<ul>
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ul>  

</body>
</html>

Output should be:

Full Example of Unordered HTML List





Category:
Web Tutorial
Sub Category:
HTML Lists
Uploaded by:
Admin


Read Article
https://develop.horje.com/learn/1434/reference