JIT
Thank you page design in Italian for contact form submissions
create a thank you page in Italian language, that people will see after they get redirected from a CONTACT FORM. Include the contact details: Telefono: +355 68 66 88 888 Email: info@radiance.al
<!DOCTYPE html>
<html lang="it">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Grazie per il tuo messaggio</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            color: #333;
        }
        .container {
            max-width: 800px;
            margin: 50px auto;
            padding: 20px;
            background: #fff;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        h1 {
            color: #2c3e50;
            text-align: center;
        }
        .contact-info {
            margin-top: 30px;
            padding: 15px;
            background-color: #f9f9f9;
            border-left: 4px solid #3498db;
        }
        .contact-info p {
            margin: 5px 0;
        }
        .back-link {
            display: block;
            margin-top: 20px;
            text-align: center;
            color: #3498db;
            text-decoration: none;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>Grazie per averci contattato!</h1>
        <p>Il tuo messaggio è stato inviato con successo. Ti risponderemo al più presto.</p>
        
        <div class="contact-info">
            <h3>I nostri contatti:</h3>
            <p><strong>Telefono:</strong> +355 68 66 88 88 88</p>
            <p><strong>Email:</strong> info@radiance.al</p>
        </div>
        
        <a href="index.html" class="back-link">Torna alla pagina principale</a>
    </div>
</body>
</html>
Preview not available