Build a Recipe Page - Build a Recipe Page

Good Evening, I am having some trouble with the following;

2. You should have an html element with lang set to en.

3. You should have a head element within the html element.

8. You should have a body element within your html element.

11. You should have a p element below your h1 element.

I’ve used the CatPhotoApp as a reference to correct the code but the assignment test says otherwise.

Are there any obvious solutions I’m missing? Thank you for your time.

<!DOCTYPE html>
<html lang="en">
  <head>
   <meta charset="UTF-8">
   <title>How to make cornbread</title>
  </head>
  <body>
    <h1>How to make cornbread:</h1>
    <img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="Freshly Baked Cornbread"/>
    <p>Below is the recipe to make 1 8x8 dish of cornbread!</p>
    <h2>Ingredients</h2>
      <ul>
        <li>2 Cups of Cornbread Mix</li>
        <li>1 Cup of Any type of Milk</li>
        <li>Two Eggs</li>
        <li>1/4 Stick of Butter</li>
        <li>1/2 cup of Sugar </li>
      </ul>
    <h2>Instructions</h2>
     <ol>
        <li>Preheat the oven to 350°F and grease an 8x8-inch baking dish.</li>
        <li>In a large bowl, place the Cornbread mix.</li>
        <li>In a medium bowl, whisk together the milk, egg, butter, and sugar. (Note: you may want melt the butter before mixing.)</li>
        <li>Add the wet ingredients to the dry ingredients and mix until just combined. Pour the batter into the prepared pan and smooth the top.</li>
        <li>Bake for 25 to 35 minutes, or until the top springs back to the touch and a toothpick inserted comes out clean. Let cool in the pan for 20 minutes before slicing and serving.</li>
      </ol>
  </body>

User Agent is: Mozilla/5.0

Challenge: Build a Recipe Page - Build a Recipe Page

Welcome to the forum @Lord_Farquaad

Make sure for every opening tag there is a matching closing tag.

Happy coding