Build a Bookstore Page - Step 18

Tell us what’s happening:

i have the correct answer but its not accepting it? I don not know what i am doing wrong.

Your code so far

<!DOCTYPE html>
<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>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:152.0) Gecko/20100101 Firefox/152.0

Challenge Information:

Build a Bookstore Page - Step 18

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

Welcome to the forum @mike_hoague,

Were you asked to create another .card-container element?

Happy coding

this is the text that i encountered

Your new p element’s text should be Review your selections and continue to checkout.

Reset the step and try again. Only do what the instructions ask.

Below the element with the class card-container, add a new p element with this text:

It asks you to create a p element below the existing card-container element.

You created a new card-container element, which the instructions do not ask for.