Build a Bookstore Page - Step 12

Tell us what’s happening:

I tried alot but it’s not fixing. the more I try, the more I’m getting confused

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>

<!-- User Editable Region -->

    

<!-- User Editable Region -->

    </div>
  </div>
</body>

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

it looks like you have accidentally put a single quote at the end of the class attribute, turn that into double quotes

Hi buddy here you need to tell me what is the problem to provide the solution of your code…

Hi @mannat_06,

You have a small mistake on this line:

div class="card’id=“sally-adventure-book”

The issue is with the syntax: after class="card", you used a single quote (') instead of correctly closing the attribute and starting a new one.
This error prevents the code from being validated because the HTML structure is not properly formatted.

Happy coding.