Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

  1. You should have a body element within your html element.
  2. You should have an html element with lang set to en.
  3. You should have a head element within the html element.
    My code is detected with these errors, what should I do ?

Your code so far

<!DOCTYPE html>
<html lang="en"> 
<head>
  <title> Crispy Grilled Honey Ribs </title>
  <meta charset="UTF-8">
</head>
<body>
  <h1>Crispy Grilled Honey Ribs</h1>
  <p> Welcome to the ultimate guide for making Crispy Grilled Honey Ribs! These ribs are perfect for satisfying your craving. Follow this simple recipe to create delicious, crispy-on-the-outside, tender-on-the-inside honey ribs that everyone will love.</p>
  <h2> Ingredients</h2>
  <ul>
    <li>Pork ribs</li>
    <li>Ginger</li>
    <li>Garlic</li>
    <li>Spring onion</li>
    <li>Cooking wine, soysauce, oyster sauce, charsiu sauce</li>
    <li> 1/2 of the lemon</li>
</ul>
<h2> Instructions </h2>
  <ol>
    <li>Wash the ribs. Blanch them in water with cooking wine, green onions and sliced ​​ginger. When the water boils, remove the ribs, wash them again and drain.</li>
    <li>Marinate the ribs with 2 tablespoons minced garlic, 2 tablespoons soy sauce, 2 tablespoons char siu sauce, 1 tablespoon oyster sauce, 1/2 lemon juice. Mix well and marinate for 3 hours.</li>
    <li>Line the bottom of the air fryer with foil, arrange the lemon slices at the bottom and then place the ribs.</li>
    <li> Bake the ribs at 180 for 25-30 minutes, flipping halfway through twice to bake each side.</li>
    <li>Brush a layer of honey and bake for another 8 minutes and you're done!</li>
</ol>
<img src="https://thewoksoflife.com/wp-content/uploads/2017/05/honey-glazed-ribs-13.jpg" alt="Crispy Grilled Honey Ribs">
</body>
  


Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 Edg/136.0.0.0

Challenge Information:

Build a Recipe Page - Build a Recipe Page

you are failing things related to the html element

are you sure your html has all the pieces?

when you write an element, any element, what parts do you write?

for example a div

oh I fixed it, I missed the opening and closing tag of html element. Thank you

only the closing tag is missing the opening tag is already there

thank you for your help