Build a Recipe Page - Build a Recipe Page HELP!

Tell us what’s happening:

Please help me out with my code. It keeps saying that I have elements missing, but when I add them, they say it’s still wrong! This is for the Make a Recepie Lab.

Your code so far

<!DOCTYPE html>
<head>
<html lang="en"></html>
  <meta charset="UTF-8"
<title> Korean Fried Chicken Strips</title>
  <body>
<main>
  <h1> Korean Fried Chicken Strips</h1>
  <p>Let's make some delicious Korean Fried Chicken Strips!</p>
  <a href="https://www.eatwithcarmen.com"><img src="https://www.eatwithcarmen.com/wp-content/uploads/2024/02/KFC-air-fryer.jpg" alt="Korean Fried Chicken"></a>
  <h2> Ingredients</h2>
  <ul>
  <li>Fresh Scallions</li>
  <li>Sweet Chili Lime Sauce</li>
  <li>Boneless Skinnless Chicken Breast</li>
  <li>Buttermilk (alt: milk & lemon)</li>
  <li>Japanese BBQ Sauce</li>
  <li>Flour</li>
  <li>Spray-Oil</li>
  <li>Seasonings</li>
  <h2>Instructions</h2>
  <ol> 
    <li>Cut chicken into one-inch strips,</li>
    <li> Add to bowl with buttermilk (or milk + a squeeze of lemon) & season generously. Cover and refrigerate for 2 hours. 
    <li>Preheat air fryer to 400°; remove chicken from buttermilk & let excess drip off.</li>
    <li>Dredge in flour/seadoining mixture, pressing to coat evenly.Lightly spray with oil.
    <li> Arrange chicken strips in a single layer in air fryer basket & cook for 10-12 min, flipping halfway through till golden brown & internal temp. reaches 165°.</li>
    <li>Meanwhile, stir chili lime sauce with 1/2 Japanese BBQ sauce in a large bowl & thinly slice scallions.</li> 
   <li> Toss chicken with chilli/bbq sauce mixture and scallions. Serve immediately. </li>
  </body>


Your browser information:

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

Challenge Information:

Build a Recipe Page - Build a Recipe Page

Welcome to the forum @christinamorgan9700

The closing html tag goes after the closing body tag.

You placed the opening head tag above the opening html tag.

Try placing the opening head tag after the opening htmltag.

The meta element is missing a closing angular bracket.

Happy coding

UPDATE:

Thank you for the pointers! :blush:

But now it’s saying that requirements 3,4,6,and 8 are still incorrect somehow.

This is what I got so far:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Korean Fried Chicken Strips</title>
  <body>
<main>
  <h1>Korean Fried Chicken Strips</h1>
  <p>Let's make some delicious Korean Fried Chicken Strips!</p>
  <a href="https://www.eatwithcarmen.com"><img src="https://www.eatwithcarmen.com/wp-content/uploads/2024/02/KFC-air-fryer.jpg" alt="Korean Fried Chicken"></a>
  <h2> Ingredients</h2>
  <ul>
  <li>Fresh Scallions</li>
  <li>Sweet Chili Lime Sauce</li>
  <li>Boneless Skinless Chicken Breast</li>
  <li>Buttermilk (alt: milk & lemon)</li>
  <li>Japanese BBQ Sauce</li>
  <li>Flour</li>
  <li>Spray-Oil</li>
  <li>Seasonings</li>
  <h2>Instructions</h2>
  <ol> 
    <li>Cut chicken into one-inch strips,</li>
    <li> Add to bowl with buttermilk (or milk + a squeeze of lemon) & season generously. Cover and refrigerate for 2 hours. 
    <li>Preheat air fryer to 400°; remove chicken from buttermilk & let excess drip off.</li>
    <li>Dredge in flour/seadoining mixture, pressing to coat evenly.Lightly spray with oil.
    <li> Arrange chicken strips in a single layer in air fryer basket & cook for 10-12 min, flipping halfway through till golden brown & internal temp. reaches 165°.</li>
    <li>Meanwhile, stir chili lime sauce with 1/2 Japanese BBQ sauce in a large bowl & thinly slice scallions.</li> 
   <li> Toss chicken with chilli/bbq sauce mixture and scallions. Serve immediately. </li>
  </body>
  </html>

What is it that I’m not seeing?

hello!

you are missing a closing head tag.

THANK YOU SO MUCH! I’VE BEEN STUCK ON THIS FOR THREE DAYS!!!:heart_hands:t6: