Build a Bookstore Page - Step 18

Tell us what’s happening:

I have been trying to add my new paragraph below the element with the class “card- container” but it keeps telling me to retry i need help on this have been stuck for the past few weeks.
building a bookstore page at 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>
     <p> Review your selections and continue to checkout
    <div class="btn-container">
    </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>

<!-- User Editable Region -->

</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/147.0.0.0 Safari/537.36 Edg/147.0.0.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 @Quadri!

This is the starting code for this step. If you click on the opening .card-container div tag, the closing div tag will be highlighted. The instructions ask you to add the new code AFTER the .card-container element.

Happy coding!

Hey buddy, Here you need to do add the div element as suggested in the instructions.

Below the p element, create a div element with the class attribute set to btn-container. This container will group your navigation button elements.

And there should be the class element too in the code like the given below.

<button class="btn">Buy Now</button>

When you do these things here then you will be able to pass this test here.

Hope This Helped.