Lesson 2-1: Ordered and Unordered Lists

There are two different list tags in HTML:

<ul>
for unordered lists and
<ol>
for ordered lists. These lists contain
<li>
tags, which are list items.

Ordered lists use numbers to list items while unordered lists use bullet points.

Note: Notice how

h1
is placed outside of the
ul
tags. This is because
ul
and
ol
tags can only have
li
tags within them. However,
li
tags can contain other elements, not just text.