Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

Certified Full Stack Developer Curriculum>Basic HTML>Lab>Build a Recipe Page / I am not able to submit. I’ve gone over the elements multiple times and nothing is missing. / Please advise. Thanks. :slight_smile:

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Chocolate Chip Cookies</title>
  </head>
  <body>
    <main>
      <h1>Chocolate Chip Cookies</h1>
      <section>
      <p>Welcome to the ultimate guide for making mini chocolate chip cookies! These bite-sized treats are perfect for satisfying your sweet tooth without overindulging. Follow this simple recipe to create delicious, crispy-on-the-outside, chewy-on-the-inside mini chocolate chip cookies that everyone will love.</p>
      </section>
   <img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="Ingredients for baking: three eggs, a bowl of flour, a glass of milk, and a whisk arranged on a wooden table.">
        <h2>Ingredients</h2>
            <ul>
          <li>1 cup all-purpose flour</li>
          <li>1/2 teaspoon baking soda</li>
          <li>1/4 cup unsalted butter, softened</li>
          <li>1/4 cup granulated sugar</li>
          <li>1/2 teaspoon vanilla extract</li>
          <li>1/2 cup mini chocolate chips</li>
        </ul>
                <h2>Instructions</h2>
            <ol>
          <li>Preheat your oven to 350°F (175°C) and line a baking sheet with parchment paper.</li>
          <li>In a bowl, whisk together the flour and baking soda.</li>
          <li>In another bowl, beat the butter, sugar, and vanilla extract until creamy.</li>
          <li>Gradually add the dry ingredients to the wet mixture, then fold in the mini chocolate chips.</li>
          <li>Drop small spoonfuls of dough onto the baking sheet.</li>
          <li>Bake for 8-10 minutes, then let cool before enjoying!</li>
        </ol>
      </section>
      </main>
  </body>
</html>

Your browser information:

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

Challenge Information:

Build a Recipe Page - Build a Recipe Page

Can you please talk through the tests that are not passing and how you think your code meets the tests? Also look at the relevant user story again to see where you may have gone wrong.

    1. You should have a meta element within your head element.
    1. Your meta element should have its charset attribute set to UTF-8.

Can you point out which part of your code satisfies these two tests?