Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

whats wrong with this code?

Your code so far

<!DOCTYPE html>
 <html lang="en">
 <head>
    <meta charset="UTF-8" />
    <title>Recipe Page</title>
 </head>
 <body>
    <h1>SHAHI TUKDA</h1>
    <p>Indian dessert</p>
    <h2>Ingredients</h2>
      <ul>
        <li>toast</li>
        <li>ghee</li>
        <li>Milk</li>
        <li>sugar</li>
        <li>Mawa</li>
        <li>dry fruits</li>
      </ul>
    <h2>Instructions</h2>
    <ol>
      <li>fry toast in ghee</li>
      <li>boil milk</li>
      <li>Add sugar and Mawa in boiled milk</li>
      <li>cook it 10 mins melt mawa completely in milk </li>
      <li>put all fried toast in a tray</li>
      <li>pour boiled milk into fried toast</li>
      <li>decorate it with dry fruits</li>
    </ol>
    <img src="shahi-tukda-or-shahi-tukda-bread-pudding-sweet-made-with-bread.jpg" alt="shahi tukda in a plate" >
 </body>
 <html>

Your browser information:

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

Challenge Information:

Build a Recipe Page - Build a Recipe Page

Here are some troubleshooting steps you can follow. Focus on one test at a time:

  1. Are there any errors or messages in the console?
  2. What is the requirement of the first failing test?
  3. Check the related User Story and ensure it’s followed precisely.
  4. What line of code implements this?
  5. What is the result of the code and does it match the requirement?

If this does not help you solve the problem, please reply with answers to these questions.

Hello @masroor ! Welcome to the forum!

Great attempt!

Please check the closing html at the bottom of the code?

It is a small error we all make at times. Remember closing tags have a / within them.
Example: ```

Great job!

Keep up your good progress! :slightly_smiling_face:

Thank you so much buddy

1 Like

Ohh Okay thank you :smiley:

1 Like