HTML lists can be styled in many different ways with CSS.
One popular way is to style a list horizontally, to create a menu:
Example
<!DOCTYPE html><html><head><style>ul { ...
An ordered list starts with the ol tag. Each list item starts with the li tag.
The list items will be marked with numbers by default:
Example
<ol> <li>Coffee</li> <li>Tea</li> <li>Milk</li></ol>
Try...