Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

I’m getting the “You should have a body element within your html element”. but it’s in the code. Am I missing something?

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
    <title>Carbonara Recipe</title>
    <meta charset="UTF-8">
<body>
  <h1>My family's carbonara recipe</h1>
    <p>This is my family's famous carbonara recipe. Tasty and easy to make. This serves two people</p>
  <img src="https://www.google.com/url?sa=i&url=https%3A%2F%2Flittlespoonfarm.com%2Fpasta-carbonara-recipe%2F&psig=AOvVaw1DDPK2c8lc7LMDzbqcCmxX&ust=1750367632049000&source=images&cd=vfe&opi=89978449&ved=0CBQQjRxqFwoTCLCv09zx-40DFQAAAAAdAAAAABAE" alt="Image of a carbonara plate">
    <h2>Ingredients</h2>
    <ul>
      <li>200 gr of Rummo's Spaghetti Grossi nº5</li>
      <li>4 Egg yols</li>
      <li>50 gr of Parmesano Reggiano</li>
      <li>50 gr of Pecorino Romano</li>
      <li>100 gr of Guanciale</li>
      </ul>
    <h2>Instructions</h2>
      <ol>
      <li>Boil a pot of water with two liters and add two teaspons of salt. Once it's boiling, add the spaghetti and cook for 9 minutes.</li>
      <li>While the pasta is boiling, cut the guancialle into little cubes and reserve>
      <li>Once the spaghetti are cooked, reserve some of the pasta water on a bowl and drain the spaghetti</li>
      <li>Heat a pan on medium heat, and once its hot enough, add the guanciale and cook it until it's golden brown</li>
      <li>While the guanciale is being cooked, crack 4 eggs and separate the yolk into a bowl, add both types of cheese, a couple of tablespoons of the pasta water and mix well</li>
      <li>Once the guanciale is done, turn off the heat and add the spaghetti into the pan and mix well for a minute so the flavors combine</li>
      <li>Add the sauce mix onto the pan and mix well, to avoid clumps forming. If it's too think, add a couple more tablespoons of the pasta water</li>
      <li>Plate and serve</li>
    </ol>
</body>
</head>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Safari/605.1.15

Challenge Information:

Build a Recipe Page - Build a Recipe Page

is your body inside your head usually?

It was so obvious I didn’t see it! Thank you so much!