Build a Bookstore Page - Step 13

Tell us what’s happening:

Помогите пожалуйста я не понимаю что он от меня хочет

Вопрос выглядит так :Шаг 13

Теперь создайте вторую карточку книги. Добавьте еще один divэлемент с classатрибутом, установленным на card. Обратите внимание, как можно повторно использовать одно и то же имя класса для нескольких элементов, чтобы применить единообразный стиль.

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>
      <button class="btn">Buy Now</button>
    </div>
    

<!-- User Editable Region -->

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

<!-- User Editable Region -->

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

Challenge Information:

Build a Bookstore Page - Step 13

Welcome to the forum @kyporon2014

It looks like you copied and pasted the .card-container div element, and the elements nested inside it.

You are not asked to do that.

Please reset the step to restore the seed code and try again.

You only need to need a div element with a class attribute for this step.

It should go after the first .class div element nested in the .card-containerdiv element.

Happy coding