Nella parte head della pagina html le caratteristiche del pulsante
<style>
/* --- IL PULSANTE HOME (Fisso e Stile Coerente) --- */
.btn-top-left {
position: fixed;
top: 20px;
left: 20px;
z-index: 1000;
display: inline-block;
padding: 10px 20px;
background-color: #007BFF; /* Blu istituzionale */
color: #ffffff !important; /* Forza il bianco */
text-decoration: none;
font-weight: bold;
font-family: Arial, sans-serif; /* Font bastoni per il bottone interfaccia */
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
transition: background-color 0.3s;
}
.btn-top-left:hover {
background-color: #0056b3;
}
</style>
Nella parte body il comando
<a href="index.html" class="btn-top-left">← Torna alla Home</a>