Tell us what’s happening:
- You should have an html element with lang set to en.
- You should have a head element within the html element.
- You should have a body element within your html element.
- You should have a p element below your h1 element.
As much as i look at these and move things around, I cannot seem to figure out where my typos are at. I believe I have checked all the opening and closing tags are proper and elements are in the appropriate lines.
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title> Sausage Tortellini Soup </title>
</head>
<body>
<main>
<h1> Sausage Tortellini Soup </h1> <img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="chef supplies">
<p> A decadant, rich, and hearty soup to warm your bones and impress your guests </p>
<section>
<h2> Ingredients </h2>
<ul>
<li> 1lb Italian sausage (either sweet or spicy is fine) </li>
<li> 1 large onion, diced </li>
<li> 3 large carrots, diced </li>
<li> 3 cloves of garlic, minced </li>
<li> 2 14.5oz cans of diced tomatos </li>
<li> 32oz chicken broth </li>
<li> 16oz heavy cream </li>
<li> 16oz cheese tortellini
<li> (Optional, but <em> highly</em> recommended) Sliced green onions for garnish </li>
</ul>
</section>
<section>
<h2> Instructions </h2>
<ol>
<li> In a large dutch over, over medium heat, cook your sausage until brown and crisp. Set the cooked sausage aside in a bowl lined with paper towel </li>
<li> Add your carrots and onions to the dutch oven and deglaze with a splash of the chicken broth. </li>
<li> When the carrots and onions are softened to your liking, add the minced garlic and cook for 1-3 mins until fragrant </li>
<li> Add the diced tomatos,chicken broth, and cooked sausage to the mixture and allow it to simmer for about 5 mins. </li>
<li> Add your tortellini to the mixture and cook untill the tortellini is tender </li>
<li> Remove from heat and add your heavy cream </li>
<li> Serve with green onion garnish, and enjoy :) </li>
</section>
</main>
<footer>
<p> No Copyright - <a href="https://www.freecodecamp.org">freeCodeCamp.org</a>
</body>
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/18.3.1 Safari/605.1.15
Challenge Information:
Build a Recipe Page - Build a Recipe Page