Build a Recipe Page - Build a Recipe Page

how is this not counting as a body
html

<!DOCTYPE html>
<html lang="en">
  <body>
  <head>
    <title>chocolate chip cookies recipe </title>
    <meta charset="utf-8">
    <h1> chocolate chip cookies recipe </h1>
    <p>Welcome to the ultimate guide for making mini chocolate chip cookies! These bite-sized treats are perfect for satisfying your sweet tooth without overindulging. Follow this simple recipe to create delicious, crispy-on-the-outside, chewy-on-the-inside mini chocolate chip cookies that everyone will love.</p>
    <h2>Ingredients</h2>
      <ul>
        <li>1 cup all-purpose flour</li>
        <li>1/2 teaspoon baking soda</li>
        <li>zebi</li>
        <li>omk</li>
      </ul>
    <h2>Instructions</h2>
      <ol>
        <li>mix</li>
        <li>bake</li>
        <li>eat</li>
        <li>eat</li>
      </ol>
    <img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="cookies">
  </head>
  </body> 
</html>

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64; rv:128.0) Gecko/20100101 Firefox/128.0

Challenge Information:

Build a Recipe Page - Build a Recipe Page

hi, and welcome to the forum.

I’ve edited your post to improve the readability of the code. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

I noticed you placed a head element inside the body element. Do you think that makes sense? (usually the head is above the body)