Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

I keep having the same three marked as failed and can’t seem to figure it out
2. You should have an html element with lang set to en.
3. You should have a head element within the html element.
8. You should have a body element within your html element

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
 <title>Buff Bread Bears</title>
<meta charset="UTF-8">
</head>
<body>
  <h1>Buff Bread Bears</h1>
  <p> these gluten Buff Bread Bears can help you grow your glutes and they look super cute! their irrisistable with a tough exterior and soft interior they taste just like bread rolls.</p>
  <h2>Ingredients</h2> 
<ul>
 <li> 2 tablespoons unsalted butter</li>
<li>1/4 cup plus </li>
<li>2 tablespoons water</li>
<li>2 1/2 cups plus 2 tablespoons bread flour, divided for kneading</li>
<li>1/2 cup whole milk</li>
<li>1 1/2 teaspoons active dry yeast</li>
<li>2 tablespoons granulated sugar</li>
<li>1 1/2 teaspoons kosher salt</li>
<li>1/3 cup heavy cream</li>
<li>2 large eggs, divided</li>
<li>4 berkshire sausages (optional)</li>
<li>1/4 sheet nori, cut into two faces (or 1 tablespoon melted white and milk chocolate)</li>
<h2>Instructions</h2>
<ol>  
<li>Let rise in a warm place for 15 minutes. Meanwhile, arrange a rack in the middle of the oven and heat the oven to 350°F. Crack the remaining egg into a small bowl and whisk until no streaks remain.</li>

<li>Uncover the bears and gently adjust any sides to create your desired shape. Brush the beaten egg onto the dough, but leave a small circle on the head unbrushed for the mouth.</li> 
  <li>If using nori, brush one side of the seaweed face with egg wash and place it on the head. It will adhere to the dough fully once cooked.</li>
<li>Bake until the top is golden-brown and shiny, about 23 to 27 minutes. Let cool for at least 30 minutes before slicing. If you are decorating with melted chocolate, let cool to room temperature before piping the face.</li>
<img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="Buff Bread Bears"> 

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36

Challenge Information:

Build a Recipe Page - Build a Recipe Page

Try review the basic syntax of an html element.

<element name></element name>

It is made up of a starting tag and a closing tag!

And only if you nest content within a starting tag and a closing tag of an html element,
the content is described as “within this html element”.

Then check your html element and body element.See what you miss!

Happy Coding!