Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

keeps asking me more what is the solution

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
   <title>Shiro Recipe</title>
    <meta charset="UTF-8">
  </head>
  <body>
    <h1>SHIRO'S RECIPE</h1>
    <p>Shiro is a ethiopian meal eaten by a pancake like bread</p>
    <h2>Ingredients</h2>
    <ul>
      <li>Daakuu</li>
      <li>Zayita</li>
      <li>Shunkurti</li>
      <li>Ashabo</li>
    </ul>
    <h2>Instructions</h2>
    <ol>Bishaan dhugaati in barbaachisa,</ol>
    <ol>Beredisti kan keessatti naqxee sochostu,</ol>
    <ol>Nama ofi isaan of hin sochoosu,</ol>
    <ol>Abidda isa malee nyaatayyu hin jedhamu,</oL>
    <ol>Waantota barbaachisan erga guutte gar hojiitti galu.</ol>
    <img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="shiron hanqaaqu hin qabu namicho"
  </body>
</html>

Your browser information:

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

Challenge Information:

Build a Recipe Page - Build a Recipe Page

Please talk about how specifically you got stuck figuring out how to fix your code.

  1. You should have at least four list item elements in your ordered list with the instructions.

Ok, so how did you get stuck figuring out why your code does not meet that requirement?

i tried to add another 5th element using

    but couldn’t pass the test

The tests think this is good:

and the tests think this is bad:

How are these different?

i think they need to be nested in other element i have used UL but it did’nt pass with this element

What is ‘they’? What is ‘other element’?

those element which start with ol

What does ul stand for here? What are the li elements here?

i don’t know what ul stand for but li stands for list

Why did you add a ul element?

ok i understand it know thanks ul is unordered list it should be ol order list with list nested inside of it

1 Like