Build a Bookstore Page - Step 12

Tell us what’s happening:

Hi,
I can’t get past this step.
Is it the button opening and closing tags?

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

<!-- User Editable Region -->

    <div class="card" id="sally-adventure-book">
      <button> class="btn" Buy Now </button> 
      <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>
         
     

    </div>

<!-- User Editable Region -->

  </div>
</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

Challenge Information:

Build a Bookstore Page - Step 12

Step 12…I would like to add. tx

hello! yes it is because of the button tag here

you have to define the class of the button inside the button’s opening tag.

Yes, that’s exactly the problem! You have a syntax error in your <button> tag. The opening tag has an extra closing angle bracket in the wrong place.

I got it now. tx so much for yer replies )