it keeps telling me my title element should have my recipe title and i literally already do but it keeps saying wrong.
For the Build a Recipe Page
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"
<title>Cupcakes</title>
</head>
<body>
<h1>Cupcakes</h1>
<p>This recipe is quite simple and only requires a few ingredients. It can be used for a nice quick dessert or even a party setter.</p>
<h2> Ingredients</h2>
<ul>
<li>Milk</li>
<li>Butter</li>
<li>Eggs</li>
<li>Cornstarch</li>
</ul>
<h2>Instructions</h2>
<ol>
<li>In a bowl combine the milk and and whipping cream, then take a small pot and pour the misture in it and wait for a small simmer. Once that occurs pour in the eggs and whisk vigorously, then pour the misture into a bowl and let it rest in the fridge for atleast an hour or two. Then transfer the mixture into the glasses and ready to serve.</li>
<li> Put cups on table</li>
<li>Serve cups to people</li>
<li>Tell them to stop eating or they will be fat.</li>
<figure>
<img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="A table with 3 eggs, milk flour and a whisk">
</figure>
<figcaption>This is what you call a<strong> true</strong> chefs table.</figcaption>
<a href="https://www.google.com>">Click here to find the recipe<a>
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36
WHY DOES IT KEEP TELLING ME THERES SOMETHING WORNG WITH MY TITLE. IT SAYS THAT THE TITLE ELEMENT SHOULD HAVE MY RECIPE TITLE??!! IT LITERALLY DOES DAFAQ
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"
<title>Cupcakes</title>
</head>
<body>
<h1>Cupcakes</h1>
<p>This recipe is quite simple and only requires a few ingredients. It can be used for a nice quick dessert or even a party setter.</p>
<h2> Ingredients</h2>
<ul>
<li>Milk</li>
<li>Butter</li>
<li>Eggs</li>
<li>Cornstarch</li>
</ul>
<h2>Instructions</h2>
<ol>
<li>In a bowl combine the milk and and whipping cream, then take a small pot and pour the misture in it and wait for a small simmer. Once that occurs pour in the eggs and whisk vigorously, then pour the misture into a bowl and let it rest in the fridge for atleast an hour or two. Then transfer the mixture into the glasses and ready to serve.</li>
<li> Put cups on table</li>
<li>Serve cups to people</li>
<li>Tell them to stop eating or they will be fat.</li>
<figure>
<img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="A table with 3 eggs, milk flour and a whisk">
</figure>
<figcaption>This is what you call a<strong> true</strong> chefs table.</figcaption>
<a href="https://www.google.com>">Click here to find the recipe<a>
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36
Until you’re more comfortable with HTML, you may want to check your code with this HTML Validator. Just copy/paste your code into the text area, click the “source” checkbox at the top to see a highlighted summary of your errors at the bottom of the screen, then click “Check”. Keep fixing/checking your code until the validator says your code is okay.
Please do not create duplicate topics for the same challenge/project question(s). If you need more help then respond back to the original topic you created with your follow up questions and/or your updated code and question.