Hello! I have a weird response when building my recipe page. When I ran the tests, I passed the first two, but I am failing on ‘3. You should have a head element within the html element.’ Which would be fine, except that I do have a head element in my html element.
Any ideas where I’ve gone wrong here?
<!DOCTYPE html>
<html lang="en">
<head title="cheesy veggie pasta">
<meta charset="utf-8"></meta>
</head>
<body>
<h1>Cheesy Veggie Pasta</h1>
<p>Super easy way to get some protein in with minimal effort</p>
<h2>Ingredients</h2>
<ul>
<li>Whatever pasta you have lying around</li>
<li>Whatever frozen veggies you have lying around</li>
<li>Whatever pasta you have lying around</li>
</ul>
<h2>Instructions</h2>
<ol>
<li>Throw your water on to boil and add frozen veggies</li>
<li>Cook your pasta with the veggies</li>
<li>grate some cheese while the water heats</li>
<li>Drain when the pasta is of appropriate softness.</li>
<li>Throw pasta and veggies back in the pan. Add cheese</li>
<li>stir</li>
<li>When meltificaiton is complete, eat</li>
</ol>
<img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="ingredients that have nothing to do with this recipe">
</body>
</html>