HTML Lists
<!DOCTYPE html> <html> <body> <ol type="A"> <li>Read the requirements</li> <li>Write the draft</li> <li>Get approval</li> </ol> <ol type="I" start="4"> <li>Chapter four</li> <li>Chapter five</li> </ol> </body> </html>
<!DOCTYPE html> <html> <body> <ol type="A"> <li>Read the requirements</li> <li>Write the draft</li> <li>Get approval</li> </ol> <ol type="I" start="4"> <li>Chapter four</li> <li>Chapter five</li> </ol> </body> </html>