Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

It’s telling me that I need to have a head and body in html and set lang to en I’m not sure what i have wrong.

Your code so far

<!DOCTYPE html>
<html lang="en">

 <head> 
   <title>Chocolate Chip Cookies</title>
   <meta charset="UTF-8">
 </head>

 <body>
   <h1>
   Chocolate Chip Cookies
   </h1>
    <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>
    <img src=https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg>
   <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>
       
 </body>  

Your browser information:

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

Challenge Information:

Build a Recipe Page - Build a Recipe Page

Hi @gorillazkid ,

Is this a complete element?

Happy coding!

1 Like

Looks like you may be missing your html closing tag. Did you end up fixing it?