Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

Im struggling to pass this one. says that i should have an unordered list under first h2 element and that my second h2 element should have the text instructions and that i should have an ordered list after the second h2 element. What am i doing wrong???

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Chocolate Creme Pie</title>
  <meta charset="UTF-8">
</head>
<body>
<h1>Choclate Cream Pie</h1>
<p> This amazing delicate pie has everything your sweet tooth can desire. It is easy, quick, and sure to make your mouth water while you make it.</p>
<h2>Ingredients<h2>
  <ul>
   <li>chocolate pudding mix</li>
   <li> Graham cracker crust</li>
   <li>cool whip</li>
   <li> chocolate chips</li>
   </ul>
<h2>Instructions<h2>
<ol>
  <li>Take pudding mix and empty into a bowl</li>
  <li>Take cool whip and empty into same bowl</li>
  <li>Stir together until all mixed</li>
  <li>Take the mixture and empty into the graham       cracker crust</li>
  <li>Place into fridge until firm</li>
  
  <li> When firm take out and sprinkle with chocolate chips</li>
  <li> Serve and enjoy!</li>
</ol>
      <img src=https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg alt= chocolate pudding pie>
</body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36 Edg/137.0.0.0

Challenge Information:

Build a Recipe Page - Build a Recipe Page

Welcome to the forum @casteelkun

The h2 elements are missing something from the closing tag.

Happy coding