Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

Hi everyone, I have built the first recipe page with the code below:

Soaked Granulated cassava I just posted the side of the code that is affected, or to be precise, has been flunked by the system (the title element). it says it must have the title of my recipe. I have tried all that I can think off including changing the name of the recipe which was originally a mix of Ghanaian slang and English to purely English to no avail. what is wrong??

Your code so far

<!DOCTYPE html>
<html lang="en">
 <head> 
  <meta charset="utf-8"
  <title>Soaked Granulated cassava</title>
  </head>
  <body>
    <h1>Gari Soakings</h1>
    <p>This is made by soaking  Gari (granulated cassava) into water and adding sugar and groundnuts.</p>
    <h2>Ingredients</h2>
<ul>
<li>granulated cassava</li>
<li>sugar</li>
<li>water</li>
<li>groudnuts</li>
</ul>
<h2>Instructions</h2>
<ol>
<li>Pour gari (granulated cassava) into a plate or cup</li>
<li>Add enough water to soak it but not make it watery and allow it to swell.</li>
<li>ad enough sugar to sweeten it and remember to stair it well.</li>
<li>add about a handful of groundnuts.</li>
</ol>
<img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="a picture of a recipe">
    </body>
    </html>

Your browser information:

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

Challenge Information:

Build a Recipe Page - BuilEed a Recipe Page

Hi @Official_GrownUp !

Welcome to the forum!

This is not correct HTML

Once you fix that, then the test will pass.

It is best this early on in your learning to run your code through a validator to help you spot errors like this. Because these will affect the tests

Hope that helps