<ul>
<li>List Item 1</li>
<li>List Item 2</li>
<li>List Item 3</li>
<li>List Item 4</li>
<li>List Item 5</li>
</ul>
You will notice how we don’t specify that we would like a bullet point, yet in the browser each list item still has a bullet point prefixing it by default. We will explore some of the possibilities of this behaviour later in this book.
Ordered lists are structurally identical to unordered lists, however instead of using a <ul> tag to wrap around our list items, we replace it for an <ol> tag instead. Everything else can stay the same.