What's wrong here in my code?

Problem: https://www.freecodecamp.org/learn/2022/responsive-web-design/learn-basic-css-by-building-a-cafe-menu/step-32

My code:

      <article>
        <p>French Vanilla</p>
        <p>3.00</p>
      </article>
      
      <article>
        <p>Caramel Macchiato</p>
        <p>3.75</p>
      </article>
      
      <article>
        <p>Pumpkin Spice</p>
        <p>3.50</p>
      </article>
      
      <aritcle>
        <p>Hazelnut</p>
        <p>4.00</p>
      </article>

      <article>
        <p>Mocha</p>
        <p>4.50</p>
      </article>

there is a typo in the 4th article

Thanks a lot. Appreciate it.

1 Like

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