Write HTML code to generate following output

  1. Coffee
  2. Tea
  3. Black Tea
  4. Green Tea
  5. Milk

<!DOCTYPE html>

<html>

<head>

     <title>M2-R5.1 Set 4 Question 1</title>

</head>

<body>

          <ol>

                   <li>Coffee</li>

                   <li>Tea</li>

                   <li>Black Tea</li>

                   <li>Green Tea</li>

                   <li>Milk</li>

          </ol>

</body>

</html>