Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

  1. Your recipe page should have a !DOCTYPE html declaration.
    Passed:2. You should have an html element with lang set to en.
    Failed:3. You should have a head element within the html element.
    Failed:4. You should have title element within your head element.
    Passed:5. Your title element should have your recipe title.
    Failed:6. You should have a meta element within your head element.
    Failed:7. Your meta element should have its charset attribute set to UTF-8.
    Failed:8. You should have a body element

Your code so far

< !DOCTYPE html>
  <html lang="en">
<head meta charset="UTF-8">
    <title>fried eggs recipe</title>
 </head>
<body>
  <h1>fried eggs</h1>
  <p>fried eggs are easy to make and this give a step by step guide on how to make it in a simpler way.</p>
  <h2>Ingredients</h2>
  <ul>
    <li>2 eggs</li>
    <li>salt</li>
    <li>cooking oil</li>
    <li>frieing pan</li>
   <li> bowl</li>
    <li>spoon</li>
    <li>source of fire</li>
  </ul>
  <h2>Instructions</h2>
    <ol>
      <li>break 2 eggs into a bowl </li><li>add salt and stir until it is ina single layer</li>
      <li>put frieing pan on fire and hit</li>
      <li>add cooking a table spoon of cooking oil and wait 1 min to hit</li><li>put stirred eggs on the hitting pan and cook for 3 mins while flipping on both sides</li><li> serve on a plate and ready to eat</li>
    </ol>
    <img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="3 eggs">
</body>
</html>

Your browser information:

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

Challenge Information:

Build a Recipe Page - Build a Recipe Page

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

Welcome to the forum @lusala

Try removing the whitespace before the exclamation mark in the DOCTYPE element.

It looks like you placed the meta element inside the head opening tag.

Happy coding