The code for ordered_lists.html is: <!DOCTYPE html> <html lang="en"> <head> <title>Ordered Lists</title> <meta charset="utf-8"> <link href="lists.css" rel="stylesheet"> </head> <body> <h1>Ordered Lists</h1> <h2>Ordered List (unstyled)</h2> <ol> <li>Coffee</li> <li>Tea</li> <li>Milk</li> <li> <b>Second list</b> <ol> <li>Line 1</li> <li>Line 2</li> <li> <b>Third list</b> <ol> <li>Line 1</li> <li>Line 2</li> </ol> </li> </ol> </li> </ol> <h2>Ordered List with lower-roman Bullets</h2> <ol style="list-style-type:lower-roman;"> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol> <h2>Ordered List with upper-roman Bullets</h2> <ol style="list-style-type:upper-roman;"> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol> <h2>Ordered List with upper-alpha Bullets</h2> <ol style="list-style-type:upper-alpha;"> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol> </body> </html>