Build a Bookstore Page - Step 15

Tell us what’s happening:

Please i’m stuck in my coding classes, please help me out with this code: Below the element with the class card-container, add a new p element with this text:

Example Code
Review your selections and continue to checkout.
Below the p element, create a div element with the class attribute set to btn-container. This container will group your navigation button elements.

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


<!-- 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

Hi.

Have a look at where you placed the code.

The instructions say:

Below the element with the class card-container...

You need to place it after the closing tags of that element.

Also your new div element needs a closing tag I think.

Got it… It passed!

It was actually the closing tag of the “

” that wasn’t placed in the first place.

Thank you.