Tell us what’s happening:
Its asking me to have an html element with the lang set to en but i do have one.
Not only that its asking me to have a head element and a body element within my html element, which i also have.
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Grilled Cheese Sandwich Recipe</title>
</head>
<body>
<img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="test">
<h1>Grilled Cheese Sandwich Recipe</h1>
<p>Welcome to my grilled cheese sandwich recipe!</p>
<h2>Ingredients</h2>
<ul>
<li>White bread</li>
<li>Mozzarella cheese</li>
<li>Butter</li>
<li>Tomato Slices (optional)</li>
</ul>
<h2>Instructions</h2>
<ol>
<li>butter the pan.</li>
<li>once butter is melted, place bread slices on to the pan.</li>
<li>flip the bread after a minute or two.</li>
<li>place cheese on top of the bread. Add tomato slices if desired.</li>
<li>flip one of the bread slices onto the other. enjoy!</li>
</ol>
</body>
<html>
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