Build a Bookstore Page - Step 7

Tell us what’s happening:

I cannot tell what it’s specifically asking me to do, this is the first question I have struggled with where a google search and reading forum questions has not helped. I genuinely might just be being stupid to be fair.

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>

<!-- User Editable Region -->

  <div>
  <p class="card-container">
  </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

Challenge Information:

Build a Bookstore Page - Step 7

  1. It is asking you to give class="card-container" to <div> and not <p>.
  2. Paragraph elements are not void elements: <p></p> and not <p>

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.