Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

When I try to “check your code”, I get “You should have an “html” element with “lang” set to “en”.” When I read or look at other users code, it looks the same but I can’t get past this step.

Your code so far:

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

 <head>
   <meta charset="UTF-8">
   <title>Bake a Cake</title>
 </head>
 
 <body>
   <h1>Todd's Recipe Page</h1>
     <p>This page will show my recipe for cake</p>
    <h2>Ingredients</h2>
  <ul>
    <li>Milk 100g</li>
    <li>Flour 25g</li>
    <li>Eggs x 3</li>
    <li>Whisk</li>
  </ul>
    <h2>Instructions</h2>
   <ol>
    <l1>In a bowl, whisk the milk and the cracked eggs.</l1>
    <l1>Slowly add the flour to the mixture and whisk so no clumps appear.</l1>
    <l1>Grease a pan with flour coating all sides.</l1>
    <l1>Pour the mixture to the pan and bake for 30 mins at 125 degrees.</l1>
    </ol>
    <img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="Whisk, Eggs, Milk, Flour Picture">
 </body>

Your browser information:

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

Challenge Information:

Build a Recipe Page - Build a Recipe Page

Github Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-recipe-page/668f08ea07b99b1f4a91acab.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome to the forum @toddbrokenshire!

Remember that most HTML elements need an opening tag and a closing tag.

Happy coding!