Criar uma Página de Livraria - Passo 13

Conte-nos o que está acontecendo:

Sally's Adventure

This is an epic story of sally and her dog Rex as they navigate though other worlds.

Buy Now

Second Adeventure

Another exciting tale awaits in this second card.

Buy Now
o código diz que deve ter dois elementos div,atributo classe e o Valor card. solícito a correção.

Seu código até o momento

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

    <main>
        <div class="card" id="sally-adventure-book">
      <h2>Sally's Adventure</h2>
      <p>This is an epic story of sally and her dog Rex as they navigate though other worlds.</p>
      <button class="btn">Buy Now</button>
      </div>
      <div class="card">
        <h2>second Adventure</h2>
        <p>Another exciting tale awaits in this second card.</p>
        <button class="btn">Buy Now</button>
        </div>
        </main>


<!-- User Editable Region -->

  </div>
</body>

</html>

Informações do seu navegador:

Agente de usuário: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36

Informações do desafio:

Criar uma Página de Livraria - Passo 13

are you sure you need to add this in this step?

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