<!DOCTYPE html>
<html lang=”it”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1″>
<title>Disiscrizione newsletter | Maso delle Erbe</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 60px 20px;
background-color: #fefcf4;
}
h1 {
font-size: 28px;
color: #4e342e;
}
p {
font-size: 18px;
color: #6d4c41;
margin-bottom: 40px;
}
.button {
display: inline-block;
padding: 15px 25px;
margin: 10px;
font-size: 16px;
border-radius: 6px;
text-decoration: none;
font-weight: bold;
transition: background-color 0.3s ease;
}
.yes {
background-color: #d84315;
color: white;
}
.yes:hover {
background-color: #bf360c;
}
.no {
background-color: #8bc34a;
color: white;
}
.no:hover {
background-color: #689f38;
}
</style>
</head>
<body>
<h1>Ci dispiace </h1>
<p>Sei sicuro di voler cancellarti dalla newsletter di Maso delle Erbe?</p>
<!– Pulsante di conferma disiscrizione –>
<a class=”button yes” href=”mailto:info@masoerbe.it?subject=Richiesta%20disiscrizione%20newsletter”>
Sì, voglio disiscrivermi
</a>
<!– Pulsante per restare iscritto –>
<a class=”button no” href=”https://masoerbe.it”>
No, voglio restare aggiornato!
</a>
</body>
</html>