cta · conversion

Bandeau CTA

Bandeau plein largeur avec titre, texte et bouton d'action. Sert à convertir en fin de section ou de page.

Voir le code source
<style>
.cta-bandeau {
  padding: 4rem 1.5rem;
  text-align: center;
  font-family: sans-serif;

  background: #1a1a1a;
  color: #fff;
}

.cta-bandeau__title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.cta-bandeau__text {
  color: #ccc;
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

.cta-bandeau__btn {
  display: inline-block;
  padding: 0.85rem 2rem;

  background: #fff;
  color: #1a1a1a;

  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;

  transition: transform 0.2s ease;
}

.cta-bandeau__btn:hover {
  transform: translateY(-2px);
}

</style>

<section class="cta-bandeau">
  <h2 class="cta-bandeau__title">Prêt à démarrer votre projet ?</h2>
  <p class="cta-bandeau__text">Contactez-nous aujourd'hui pour un devis gratuit et sans engagement.</p>
  <a href="#" class="cta-bandeau__btn">Demander un devis</a>
</section>