Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

I’m Stuck not sure what I’ve coded incorrectly? Can you give me a tip on how to set my body within my html like it’s asking me?

Your code so far

<!DOCTYPE html>
 <html lang="en">    
  <head><title>Street Tacos</title>
   <meta charset="UTF-8">
    <body>
     <h1>Tacos of fire!</h1>
        <p>These are really great!</P>
     <h2>Ingredients</h2>
      <ul>
       <li>carne asada</li>
       <li>corn tortillas</li>
       <li>queso</li>
       <li>limes</li>
      </ul>
        <h2>Instructions</h2>
         <ol>
           <li>cook meat with fire!</li>
           <li>warm thee tortillas!</li>
           <li>crumble the queso.</li>
          
           <li>squeezey the limeys!</li>
          </ol>
   <img src="https://cdn.freecodecamp.org/curriculum/labs/ecipe.jpg"alt="taco man recipe">   
    </body>
   </meta>
  </head>    
 </html>

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

Challenge Information:

Build a Recipe Page - Build a Recipe Page

Your HTML structure is faulty. Please take a look at this video/transcript about using an HTML boilerplate to get the basic structure of your HTML off to a good start.

You can also paste your code into this HTML validator and fix/check until the validator says your code is okay. It doesn’t catch everything, but it catches most issues.

1 Like