Build a Bookstore Page - Step 18

Tell us what’s happening:

It’s saying the text in the p tag is wrong but I copied exactly what it’s said but keeps saying it’s wrong. even if I type it out it says it’s wrong.

Your code so far

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

<!-- User Editable Region -->

  <element class="card-container"></element>
  <p>Review your selections and continue to checkout.</p>
  <div class="btn-container">
    </div>

<!-- User Editable Region -->

</body>

</html>

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36

Challenge Information:

Build a Bookstore Page - Step 18

There is no HTML element called “element”

there isn’t an html element called element

there is already an html element with class card-container, you do not need to create a new one

see here, the start and closing tag are connected together, you need to write after the closing tag

1 Like

I was so burnt out by this point that I forgot didn’t exist :smiling_face_with_tear: thank you