Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

I am attempting to run the tests on the ‘Build a Recipe Page’ lab in the Full Stack Dev curriculum. I see the text “//running tests” in the console pane, but nothing else happens. No feedback, no errors, nothing is happening. it’s just loading.

Your code so far

<!DOCTYPE html>
<html lan="en">
  <head>
    <title>Barnz Recipe</title>
  </head>
  <meta charset="UTF-8">
<body>
  <h1>Barnz Recipe</h1>
<p>Barnz Special Creamy Jollof Pasta is a rich and flavorful fusion dish that combines the bold taste of West African jollof sauce with creamy pasta goodness. It’s easy to prepare, satisfying, and perfect for lunch or dinner.</p>
<section>
  <h2>Ingredients</h2>
  <ul>
    <li>250g pasta (penne or spaghetti)</li>
    <li>2 cups blended tomatoes</li>
    <li>1 red bell pepper</li>
    <li>1 small onion (chopped)</li>
    <li>2 cloves garlic (minced)</li>
    <li>1 teaspoon curry powder</li>
    <li>½ cup fresh cream</li>
  </ul>
  <section>
    <h2>Instruction</h2>
    <ol>
      <li>Boil the pasta in salted water according to package instructions. Drain and set aside.</li>
      <li>Heat vegetable oil in a pan and sauté the chopped onions and garlic until fragrant.</li>
      <li>Add blended tomatoes and red bell pepper. Cook for 8–10 minutes until the sauce thickens.</li>
      <li>Add curry powder, thyme, seasoning cube, and salt. Stir well.</loi>
    </ol>
  </section>
</section>
<img src="https://www.hintofhealthy.com/wp-content/uploads/2020/06/Jollof-spaghetti.jpg" alt="Jollof Spaghetti">
</body>

Your browser information:

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

Challenge Information:

Build a Recipe Page - Build a Recipe Page

The language attribute in the html tag should be lang, not lan.

Is your html element closed properly?

Where do we put meta tags?

Try fixing those issues and running the tests again.