Build a Bookstore Page - Step 15

Tell us what’s happening:

I don’t understand what i am missing. I don’t know what i am doing wrong.

Your code so far

```
<!-- User Editable Region -->

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

<!-- User Editable Region -->
```

Your browser information:

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

Challenge Information:

Build a Bookstore Page - Step 15

https://www.freecodecamp.org/learn/full-stack-developer/workshop-bookstore-page/step-15

It looks like you placed the paragraph element and btn-container elements in the wrong place.

I would suggest resetting the lesson and trying agin.

The directions say to place your paragraph element below the card-container element. So basically, place it below all of your other html

Thank you! The way the directions are written makes it slightly confusing. I was able to complete this.