Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

After going through every instructions correctly it is still showing that
i) I don’t have an html element
ii) I don’t have a head
iii) I don’t have a body

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
     <title>How to make Noodles</title>
     <meta charset="UTF-8">
  </head>
  <body> 
    <h1>How to make Noodles</h1>
    <p>Easy way to cook and enjoy your noodles.</p>
    <h2> Ingredients </h2>
    <ul>
      <li> Noodles </li>
      <li> Spicies </li>
      <li> Vegetables </li>
      <li> Water </li>
    </ul>
    <h2> Instructions </h2>
    <ol>
      <li> Pour a cup of water inside the pot and put on fire </li>
      <li> Break the noodles and pour it inside the pot and leave for about 10mins </li>
      <li> Cut the vegetables and put it inside together with the spicies and leave for more 3mins </li>
      <li> Stir very well to mix and the noodle is ready for consumption </li>
    <img src="https://media.istockphoto.com/id/1354543900/photo/asian-spicy-instant-noodles-soup-cooking-in-hot-pot.jpg?s=1024x1024&w=is&k=20&c=1f8plFEl9pAhp2ROPD7RmmXA4CAXeT-ynMR6Hh5Cd3M=" alt="Noodles prepared for consumption">


  </body>

Your browser information:

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

Challenge Information:

Build a Recipe Page - Build a Recipe Page
https://www.freecodecamp.org/learn/full-stack-developer/lab-recipe-page/build-a-recipe-page

Hi,
Are you sure you have an html element?
Make sure to check if you have both the opening and closing tags.

You can always check your HTML with a validator like this one: https://validator.w3.org/

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.