Criar uma Página de Livraria - Passo 18

Conte-nos o que está acontecendo:

Review your selections and continue to checkout.

O código diz que no elemento p o texto é Review your selections and container to checkout. Solicito a correção,

Seu código até o momento

<html lang="en">
<head>
  <meta charset="UTF-8" />
  <title>XYZ Bookstore Page</title>
</head>

<body>
  <h1>XYZ Bookstore</h1>
  <p>Browse our collection of amazing books!</p>
  
  <div class="card-container">
    <div class="card" id="sally-adventure-book">
      <h2>Sally's SciFi Adventure</h2>
      <p>This is an epic story of Sally and her dog Rex as they navigate through other worlds.</p>
      <button class="btn">Buy Now</button>
    </div>
    
    <div class="card" id="dave-cooking-book">
      <h2>Dave's Cooking Adventure</h2>
      <p>This is the story of Dave as he learns to cook everything from pancakes to pasta, one recipe at a time.</p>
      <button class="btn">Buy Now</button>
    </div>
  </div>
  

<!-- User Editable Region -->

<div class="card-container"></div>
  <p>Review your selections and continue to checkout.</p>
  <div class="btn-container"></div>

<!-- User Editable Region -->

</body>

</html>

Informações do seu navegador:

Agente de usuário: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36

Informações do desafio:

Criar uma Página de Livraria - Passo 18

Did the instructions ask you to add another .card-container div?

Everything else looks good.

Review your selections and continue to checkout.

O código diz que o texto do novo elemento p deve ser Review your selections and continue to checkout. Solícito a correção.

You were not asked to create another .card_container div. You were asked to add a p element after the existing .card_container div.

Please take your time and read the instructions carefully before you add your code.