An ordered list is defined using the <ol> tag, and list items placed inside of an ordered list are preceded with numbers instead of bullets.
<h4 align="center">Goals</h4> <ol> <li>Find a Job</li> <li>Get Money</li> <li>Move Out</li> </ol>
Goals
Find a Job
Get Money
Move Out
The numbering of an HTML list can be changed to letters or Roman Numerals by once again adjusting the type attribute.
<ol type="a"> <ol type="A"> <ol type="i"> <ol type="I">
The start attribute allows you to further customize an HTML ordered list by setting a new starting digit for the ordered list element.
<h4 align="center">Goals</h4> <ol start="4" > <li>Buy Food</li> <li>Enroll in College</li> <li>Get a Degree</li> </ol>
Goals
Buy Food
Enroll in College
Get a Degree