Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

Can someone please tell me what’s wrong with this code so far

<meta charset="UTF-8" Glow oil recipe

Glow Oil

I want to make glow oil.

Ingredients

  • Carrots
  • Lemon
  • Baby Oil
  • Vitamin E Oil

Instructions

  1. Carrots
  2. Your code so far

    <!DOCTYPE html>
      <html lang="en">
       <head>
        <meta charset="UTF-8"
        <title>Glow oil recipe</title>
      </head>
       <body>
        <h1>Glow Oil</h1>
         <p>I want to make glow oil.</p>
            <h2>Ingredients</h2>
            <ul>
              <li>Carrots</li>
              <li>Lemon</li>
              <li>Baby Oil</li>
              <li>Vitamin E Oil</li>
            </ul>
            <h2>Instructions</h2>
            <ol>
              <li>Carrots </li>
              <li>Baby Oil</li>
              <li>Water</li>
              <li>Carefulness</li>
            </ol>
            
            <img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="a picture of carrots and lemon next to a bottle of oil">
          </body>
      </html>
    

    Your browser information:

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

    Challenge Information:

    Build a Recipe Page - Build a Recipe Page

Welcome to the forum @chinazanneli

  1. Your title element should have your recipe title.

Check the element before the title element is properly closed.

Happy coding

1 Like

Thanks you so much :blush:

1 Like