Build a Bookstore Page - Step 18

Tell us what’s happening:

It says that my new <p> needs to be below the card-container element but I have it under it. I don’t know what I’m doing wrong. It’s from the build your own bookstore page from the responsive web design cert. step 18

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">
    <p>Review your selections and continue to checkout.</p>

<!-- User Editable Region -->

  <div class="btn-container"
  </div> 

<!-- 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 Edg/146.0.0.0

Challenge Information:

Build a Bookstore Page - Step 18

hi and welcome to the forum,

I edited your post to add backticks around the element <p> in your description as in the forum, any html is not shown as code without the user of backticks. Like below:

`<p>`

this is the .card-container element

So you need the new element below the closing div for this element.
(You do not need to add another div)