Build a recipe ,ul,ol,h2 problem

i could not find the problem it showing ul ,ol and h2 problem even though its alright.

if you press ctrl +enter you will se the problem

Please post your code.

<!DOCTYPE html>
<html lang= "en">
  <head>
    <title>biriyani</title>
    <meta charset= "UTF-8">
    </head>
    <body>
      <img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="definetly not biyani pics">
      <h1>chicken biriyani</h1>
      <p>marinate the chicken with curd for overnight</p>
      <p> wash and boil basmati rice with ghee</p>
      <h2>Ingredients<h2>
          <ul>
           <li>basmati rice</li>
           <li> ghee</li>
           <li> curd</li>
           <li>chicken</li>
          </ul>

          
      <h2>Instructions</h2>
          <ol>
           <li>boil rice for 30 min& disperse the water<li>
           <li>mix the rice with biriyani masala</li>
           <li>now drop the chicken and layer it</li>
           <li>serve with cola</li>
           <li>serve it and eat it</li>
          </ol>
    </body>
  </html>

Check this line

1 Like

Take a look at the closing tag

1 Like