Build a Bookstore Page - Step 15

Tell us what’s happening:

I dont get it, code should be fine but maybe I got it wrong somewhere.

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>
    <div class="btn-container">
      
    </div>
    
    <button class="btn">Buy Now</button>
    
  </div>
    
</div>


<!-- User Editable Region -->

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:145.0) Gecko/20100101 Firefox/145.0

Challenge Information:

Build a Bookstore Page - Step 15

I think you missed the first part of the instructions:

Also, remember that ‘below the element with the class card-container’ means below the closing tag of the element not below the opening tag (otherwise it’s nested inside the element).

The new paragraph and div element with the classattribute set to btn-container should be added at the bottom of your last