Step 18…
I have placed the p element below the element with a class of card-container.
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">
<p>Review your selections and continue to checkout.</p>
<div class="btn-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>
<!-- User Editable Region -->
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.2 Safari/605.1.15
the link to the challenge is already present in the first post in the part automatically created
this is the card-container element, if you look there is a lot of stuff inside card-container that you added in the last few steps. You could go back a few steps if you are not following, notice how you always add stuff inside card-container since step 8 (it was created in step 7)
and then after all the stuff added inside it there is a closing tag, that is the closing tag belonging to card-container, to add elements after card-container you write after that closing tag