Construir una Página de Librería. - Paso 18

Cuéntanos qué está pasando:

Hay un bug no me deja pasar aunque el ejercicio este bien

Tu código hasta el 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>

Información de tu navegador:

El agente de usuario es: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.5 Safari/605.1.15

Información del Desafío:

Construir una Página de Librería. - Paso 18

GitHub Link: i18n-curriculum/curriculum/challenges/espanol/blocks/workshop-bookstore-page/68eca6364c5616d393389a30.md at main · freeCodeCamp/i18n-curriculum · GitHub

Welcome to the forum @Ainhoa,

Here is an excerpt from the instructions:

Debajo del elemento con la clase card-container , agrega un nuevo elemento p con este texto:

You are not asked to add a new .card-container div. You are asked to add the new code below the existing .card-container`` div.

Happy coding