Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

Im failing for the steps 2, 3 and 8 but i dont know why - everything seems right but all the wrong steps are to do with the html?

Your code so far

<!DOCTYPE html>
<html lang="en">
 <head>
  <title> scrambled eggs </title>
  <meta charset="utf-8">
 </head>
 <body>
   <h1> Scrambeled eggs </h1>
   <p> Heres the yummy recipie </p>
   <h2> Ingredients </h2>
   <ul>
     <li> eggs </li>
     <li> cheese </li>
     <li> milk </li>
     <li> butter </li>
     </ul>
     <h2> Instructions </h2>
     <ol>
<li> add butter to pan </li>
<li> turn on stove </li>
<li> crack egg into bowl </li>
<li> add milk and cheese </li>
<li> whisk </li>
<li> pour into pan and cook to perfection </li>
       </ol>
       <img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="eggs" >
       </body>

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

You’re missing one of the boilerplate element end tags.

What is HTML? - What Is an HTML Boilerplate, and Why Is It Important? | Learn | freeCodeCamp.org

Welcome to the freeCodeCamp community, @KyuteKarina!
The html tag is the container that all HTML code fits into. It requires an opening and closing tag, like this:

<html lang="en">
    <!-- code>
</html>

I hope this helps you! Happy Coding! :smile:

1 Like