Lists

There are ways of making “unordered” versus “ordered” lists in HTML. To me that is just styling - one is best off to pick one form of doing lists and then use CSS rules to determine if you want numbers or bullet points:

<ul> <li>An item</li> <li>Another item</li> </ul>