Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

  1. You should have a p element below your h1 element.
    i have done it but it keep saying it has not been done

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>
      tibs recipe
    </title>
    <meta charset="UTF-8">
  </head>
  <body>
    <h1>
      <p>Tibs Recipe</p>
    </h1>
    <p>tibs</p>
    <h2>
      <p>Ingredients</p>
    </h2>
    <ul>
      <li>meat</li>
      <li>onion</li>
      <li>tomato</li>
      <li>butter</li>
      <li>spice</li>
    </ul>
    <h2>
      <p>Instructions</p>
    </h2>
    <ol>
      <li>cook the meat on plat</li>
      <li>wait until the meat change it's colour</li>
      <li>when it changes it's colour add the onion </li>
      <li>after one minuet add the tomato</li>
    </ol>
    <li>turn off the heat and wait for 1 minuet and you have finished tibs thanks</li>
    </ol>
    <img src="https://en.m.wikipedia.org/wiki/File:Tibs_Picture.jpg" alt="tibs picture">
  </body>
</html>

Your browser information:

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

Challenge Information:

Build a Recipe Page - Build a Recipe Page

you should not put a p element inside the h1 element

1 Like