Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

None of the tests are being checked. I’ve re-done this 3 times and I’ve checked my work using the cat photo app workshop and I don’t know what I’m doing wrong.

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Homemade Pancakes</title>
  <body>
    <h1>Homemade Pancakes</h1>
    <p>Today you will learn how to make Very basic Homemade pancakes, im no chef and my cullinary expertise is as about as much as an child.</p>
    <h2>Ingredients</h2>
    <ul>
      <li>eggs
      <li>Milk
      <li>Flour
      <li>butter
      <li>Sugar
      <li>chocolate chips
    </ul>
    <h2>Instructions</h2>
    <ol>
      <li>Put ingredients into a bowl and wisk
      <li>Pour Batter into a pan and cook till tiny bubbles form then flip
      <li>Take pacake from pan put onto a plate
      <li>Enjoy!!!!
    <img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="Pancake ingredients">
</html>
</head>
</body>

Your browser information:

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

Challenge Information:

Build a Recipe Page - Build a Recipe Page

Your closing tags are in the wrong place:

</html>
</head>
</body>

The last closing tag should be the html closing tag. The head closing tag should be before the opening body tag.

1 Like

Thank you that worked, i also realized i missed the closing to the ol

1 Like

Your li elements also do not have closing tags.