What is wrong in step 32 in Learn basic css?

<!DOCTYPE html>

<html>

  <head>

    <meta charset="utf-8" />

    <meta name="viewport" content="width=device-width, initial-scale=1.0" />

    <title>Cafe Menu</title>

    <link href="styles.css" rel="stylesheet" type="text/css" />

  </head>

  <body>

    <div class="menu">

      <header>

        <h1>CAMPER CAFE</h1>

        <p>Est. 2020</p>

      </header>

      <main>

        <section>

          <h2>Coffee</h2>

          <article>

            <p>French Vanilla</p>

            <p>3.00</p>

            <p>Caramel Macchiato</p>

            <p>3.75</p>

            <p>Pumpkin Spice</p>

            <p>3.50</p>

            <p>Hazelnut</p>

            <p>4.00</p>

            <p>Mocha</p>

            <p>4.50</p>

          </article>

        </section>

      </main>

    </div>

  </body>

<html>

the above code is showing the following error:

Test

Sorry, your code does not pass. Try again.

Hint

You should have five article elements.

can you link the question?

for what you have written, this is one article element, not five

1 Like

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