Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

Can anyone find flaws in this code please.It is saying i should have the body element into my html element. But as i can see it is right where it should be

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <body>
    <title> Recipe of making french fries</title>
    <meta charset="UTF-8">
    </head>
      <h1>making french fries</h1>
      <p>Today we will learn how to make delicious french fries</p>
      <h2>Ingredients</h2>
      <ul>
        <li>Potatos</li>
        <li>Spices</li>
        <li>Oil</li>
        <li>Sauce</li>
        </ul>

      <h2>Instructions</h2>
      <ol>
        <li>Cut the potatoes in thin pieces</li>
        <li>Mix them well with the spices</li>
        <li>Deep fry them in boiling oil</li>
        <li>Serve with favourite sauce</li>
      </ol>
      <img src="https://whisperofyum.com/wp-content/uploads/2024/10/whisper-of-yum-homemade-french-fries-684x1024.jpg" alt="image of delicious french fries">
      </body>
    </html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:138.0) Gecko/20100101 Firefox/138.0

Challenge Information:

Build a Recipe Page - Build a Recipe Page

think about a human, is the body inside the head usually?

A review of the HTML Boilerplate lecture/transcript might help you see the issue.

There is an error in the body element that you inserted into the head element. The body element should be under the head element cover.