Build a Bookstore Page - Step 18

Tell us what’s happening:

my passage is not getting test in this please verify

Your code so far

<html lang="en">
<head>
  <meta charset="UTF-8" />
  <title>XYZ Bookstore Page</title>
</head>

<body>

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

<!-- User Editable Region -->


</html>

Your browser information:

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

Challenge Information:

Build a Bookstore Page - Step 18

there isn’t an html element with a name of element so you may want to delete this

this image shows the opening and closing tags of .card-container linked together

Hi buddy, Here you need to put the p tag below your div container which have the class name .card-container

When you will do add the p tag then you need to add the div element with the class name .btn-container

Hope You Understand………