Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

Having an error with the title element. “Your title element should have your recipe name.” Curious if its actually something to do with title element or if there’s an issue with my overall code that is not allowing me to move on. Any help is appreciated thank you.

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8"
    <title>Homemade Burritos Recipe</title>
  </head>
  <body>
    <h1>Homemade Burritos Recipe</h1>
    <p>This is a delicious quick and easy recipe that will guaranteed to feed you and whoever else you may have over.</p>
    <h2>Ingredients</h2>
    <ul>
    <li>Ground beef</li>
    <li>Mexican Rice</li>
    <li>Tortilla</li>
    <li>Refried Beans</li>
    </ul>
    <h2>Instructions</h2>
    <ol>
      <li>Remove meat from package and throw it on a pan at medium heat for 15 min. while stirring in a seasoning packet with a quarter cup of water.
      <li>In another pan brown dry rice in your choice of oil on medium heat until rice changes color add a can of tomota sauce as many cups of water as rice and add chicken bouyin seasoning along with others at your lesure.
      <li>Heat toritilla on a pan or straight on the stove burner.
      <li>Poor refried beans out of can into a pot cook until hot and ready.
    </ol>
    <img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="This image depicts eggs which really don't work or have place in our recipe."
  </body>
</html>

Your browser information:

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

Challenge Information:

Build a Recipe Page - Build a Recipe Page

hello @noendz , welcome to the forum!

The meta element here is missing a closing tag.

1 Like

Thank you! It worked. I have to work on finding those small errors

1 Like