Untitled
1 year ago in Plain Text
<!DOCTYPE html>
<html>
<head>
<style>
/* Style pour le bouton */
.bouton-personnalise {
background-color: green;
/* Fond vert */
color: white;
/* Texte blanc */
border: none;
/* Pas de bordure */
border-radius: 20px;
/* Coins arrondis */
padding: 10px 20px;
/* Espacement interne */
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
</style>
</head>
<body>
<!-- Le lien cliquable avec le bouton -->
<a href="votre_lien.html" class="bouton-personnalise">Le Collectif</a>
</body>
</html>