Build a Bookstore Page - Step 6

Tell us what’s happening:

I’m having trouble with my code. What am I doing wrong?

Your code so far

<h1>XYZ Bookstore</h1>
<p>Browse our collection of amazing books!</p>
<div class="card-container">

<!-- User Editable Region -->

  <div class="card" <p id="card">sally-adventure-book

 

<!-- User Editable Region -->

</div>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0

Challenge Information:

Build a Bookstore Page - Step 6

Use your previous code as a guide.

Look at this paragraph:

<p>Browse our collection of amazing books!</p>

Compare with:

<p id="card">sally-adventure-book

Do you see something missing from the second line?

Every tag also needs a closing >

<div>
    <p>Hello</p>
</div>