Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

I keep receiving the same error on my html language set and having a head element within the html element. What am I missing?

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <title>Enchiladas Verdes</title>
</head>
    <body>
      <h1>Enchiladas Verdes</h1>
      <p>Delicious rolled tortilla with green salsa and shredded chicken made simple!</p>
      <img src="https://i.ytimg.com/vi/4b6Te_6ykJY/maxresdefault.jpg" alt="An image of enchiladas verdes">
      <h2>Ingredients</h2>
      <ul>
        <li>Corn tortillas</li>
        <li>Chicken breast</li>
        <li>Corn oil (other oils will work as well, but it will affect flavor)</li>
        <li>Salt</li>
        <li>Green salsa La Preferida (you can choose which spice level)</li>
        <li>Cilantro</li>
        <li>Jalapenos</li>
        <li>Onions</li>
        <li>Garlic</li>
        <li>Cheese (Preferrably Monterey Jack)</li>
        </ul>
        <h2>Instructions</h2>
        <ol>
          <li>Boil chicken breast in a pot with half an onion, a clove of garlic, salt and cilantro until tender and shred.</li>
          <li>Add the green salsa La Preferida with half an onion, cilantro, jalapenos and a clove of garlic and blend until all ingredients are mixed together.</li>
          <li>Add green salsa to a pot and bring it to a boil.</li>
          <li>Fry corn tortillas in a pan with oil for a few seconds on each side at medium heat</li>
          <li>Dip the fried corn torillla to the salsa, add to plate, fill with shredded chicken, fold in half and add shredded cheese to the top. If you feel like having more salsa on top as well, garnish it with onions and a bit of cilantro. Feel free to add to your liking!</li>
          </ol>
      </body>

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

did you close the html element?

I appreciate it! This whole time I was thinking html was a void element like img for some reason.