Build a Bookstore Page - Step 12

Tell us what’s happening:

Hi, I’m not sure how to add the button and I don’t quite understand how to resolve this problem.

Your code so far

<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <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">
      <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>
       <p div class="btn">Buy Now</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/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36

Challenge Information:

Build a Bookstore Page - Step 12

How do you make a div element?

How do you make a p element?

A button element is similar.

Welcome to the forum @amlkcjq

The button element is used to create clickable buttons on a webpage.

For this step you are asked to use a button element, not a paragraph element.

Happy coding