A list with bullet points is called an unordered list, a numbered list is called an ordered list.
Each item in a list is called a list item.
List with bullet points
<p>Here are some fruits:</p>
<ul>
<li>Apple</li>
<li>Raspberry</li>
<li>Grape</li>
</ul>
List with numbers
<p>Best-selling albums in the UK:</p>
<ol>
<li>Queen - Greatest Hits</li>
<li>ABBA - Gold: Greatest Hits</li>
<li>The Beatles - Sgt. Pepper's Lonely Hearts Club Band</li>
</ol>
