Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

I don’t seem to get this particular aspect of the ‘Build a Recipe Page’ exercise

  1. You should have at least four list item elements in your ordered list with the instructions

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Fried-Rice</title>
    <meta charset="UTF-8">
    </head>
    <body>
      <h1>Fried-Rice</h1>
      <p>My Recipe</p>
      <h2>Ingredients</h2>
      <ul>
        <li>Rice</li>
        <li>Maggi</li>
        <li>Pepper</li>
        <li>Curry</li>
        <li>Cabbage</li>
        </ul>
        <h2>Instructions</h2>
        <ol>rice</ol>
        <ol>cabbage</ol>
        <ol>pepper</ol>
       <img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="delicious egg">
       </body>
       </html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36

Challenge Information:

Build a Recipe Page - Build a Recipe Page

This is Wrong. You made 3 ordered Lists, not 3 ordered Items. There should be 4 list items anyway. Try doing like the unordered list earlier.