Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

it says i should have a body element within my html element, but like.. i do!!..

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Waffles</title>
    <meta charset="utf-8">
    <body>
      <h1>Waffles</h1>
      <p>The best, simplest, and most delicious Waffles!</p>
      <h2>Ingredients</h2>
      <ul>
        <li>Flour</li>
        <li>Milk</li>
        <li>Eggs</li>
        <li>Butter</li>
        <li>Sugar</li>
      </ul>
      <h2>Instructions</h2>
      <ol>
        <li>Mix ingredients together in a bowl untill it becomes a liquid batter</li>
        <li>Preheat your Wafflemaker</li>
        <li>Pour Batter into Wallfemaker</li>
        <li>Let Wafflemaker bake for 5 minutes</li>
        <li>Once finished, serve Waffles with Ice Cream, Nutella, or Whipped Cream</li>
      </ol>
      <img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="Image of baking ingredients, and tools">
    </body>  
  </head>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 OPR/119.0.0.0 (Edition std-2)

Challenge Information:

Build a Recipe Page - Build a Recipe Page

Your body element is within your head element (but it shouldn’t be)

thank you so much!! crazy that 1 little mistake like that can cost the whole code! XD

yeah, that’s how coding works