So confused why it is saying my body elements are still missing. Can anyone help please?

<!DOCTYPE html>
<html lang="en">
<body>
<head>

    <title>Piece o' Pizza</title>
<meta charset="UTF-8">

  <h1>Piece o' Pizza</h1>
  <p>Roll out the dough</p>
  <h2>Ingredients</h2>
  <ul>
  <li>Tomato paste</li>
  <li>Pre made dough</li>
  <li>Cheese</li>
  <li>Ham</li>
  </ul>
    <h2>Instructions</h2>
  <ol>
    <li>Roll out the dough</li>
    <li>Set the oven to 200 degrees</li>
    <li>Spread the tomato paste over the dough</li>
    <li>Add the toppings and place in the oven</li>
    <img src="https://freecodecamp.org" alt="hot oven">
    
</head>
</body>
</html>

Please link to the challenge you are working on so we can help you and see the error messages.

At first glance, you have some issues in your HTML.

You have placed most of your elements inside of the head and that head element is inside of the body.

I would suggest reviewing the HTML boilerplate structure here which should help you with the errors you are seeing in the challenge

Sometimes when I’m coding I can’t wrap my <head> around things. And I need reminded that my <body> is a temple and anything that I want shown needs to be wrapped in there.