Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
</head>
<body>
Bouton simple
<button type="button">Ajouter à carte</button>
<hr />
Bouton avec un texte rouge
<button type="button" style="color: red;"><strong>Apprenez HTML</strong></button>
<hr />
Bouton avec la taille différente
<button type="button" style="font: bold 14px Arial;">Texte du style différent</button><br />
</body>
</html>