Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

I don’t know what’s wrong with my code. It looks like I already completed all the instructions of the test. I cannot seem to move to the next step. Please help.

Your code so far

<!DOCTYPE html>
<html lang=en>
  <head>
    <title>Munckin Pumpkin</title>
    <meta charset=UTF-8>
  </head>
  <body>
    <h1>Munchkin Pumpkin</h1>
      <p>Welcome to my recipe!</p>
      <img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="3 eggs and a whisker">
    <h2>Ingredients</h2>
      <ul>
        <li>pumpkin</li>
        <li>veggie soup</li>
        <li>cabbages</li>
        <li>carrots</li>
      </ul>
    <h2>Instructions</h2>
      <ol>
        <li>Peel the pumpkin! </li>
        <li>Pour the soup well.</li>
        <li>Add cabbages! </li>
        <li>Mix well!</li>
      </ol>
  </body>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36

Challenge Information:

Build a Recipe Page - Build a Recipe Page

are you sure you have all the pieces of an html element?
confront with the body element
what are you missing for the html element?

once you add that, you are nearer to completion

for the other issue

confront how you have given a value to the lang and charset attributes, and how you have given a value to the src and alt attributes. Aren’t lang and charset missing something?