Build a Bookstore Page - Step 18

Tell us what’s happening:

its telling me that the p elements text should be Review your selections and continue to checkout. but thats exactly what i have written and it continously shows this same error

Your code so far

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

<!-- User Editable Region -->

  

<!-- User Editable Region -->

</body>

</html>

Your browser information:

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

Challenge Information:

Build a Bookstore Page - Step 18

Welcome to the forum @navjot-singh!

Were you asked to add another .card-container div?

Happy coding!

no i wasnt but it told me to add the p element below the class card container so i added another div

This is the .card-container div.

sorry but i am not able to understand what ur trying to say like this is my first ever time to learn coding and i am starting with this course but are u trying to i should add the p element below the first <div class=”card container” > and not add another div?

dw everyone i got the solution i didnt need to add another div instead i just had to add a p element and then the div element thel told me to add after it