Tell us what’s happening:
Why is it saying I do not have any body tags inside my html when I have one right under?
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html>
<body>
<html lang="en">
<head>
<title> Best Recipe eva </title>
<meta charset="UTF-8"
</body>
<main>
<h1>Best Recipe eva</h1>
<p> This is the best recipe ever. It will blow your socks off I promise.</p>
<h2>Ingredients</h2>
<ul>
<li> love </li>
<li> love </li>
<li> love </li>
<li> love </li>
<li> love </li>
</ul>
<h2>Instructions</h2>
<ol>
<li> bread </li>
<li> Water </li>
<li> flour </li>
<li> ginger ale </li>
<li> choclate </li>
</ol>
<img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="A slice of lasagna on a plate.">
</body>
</head>
</main>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Safari/605.1.15
Challenge Information:
Build a Recipe Page - Build a Recipe Page