Coordonnées
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Contact - A Table avec Fatiha</title>
<link rel="stylesheet" href="styles.css"> <!-- Si vous utilisez une feuille de style externe -->
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 20px;
background-color: #f4f4f4;
}
h1, h2 {
color: #333;
}
.container {
max-width: 900px;
margin: auto;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.contact-info ul {
list-style-type: none;
padding-left: 0;
}
.contact-info ul li {
margin-bottom: 10px;
}
.contact-info a {
text-decoration: none;
color: #1a73e8;
}
.contact-form input, .contact-form textarea {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 16px;
}
.contact-form button {
padding: 10px 20px;
background-color: #1a73e8;
color: white;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}
.contact-form button:hover {
background-color: #155fa0;
}
</style>
</head>
<body>
<div class="container">
<h1>Contactez-nous</h1>
<p>Vous avez des questions ou souhaitez en savoir plus sur nos services ? N'hésitez pas à nous contacter, nous serons heureux de répondre à toutes vos demandes !</p>
<div class="contact-info">
<h2>Nos Informations</h2>
<ul>
<li><strong>Nom de l'entreprise :</strong> A Table avec Fatiha</li>
<li><strong>Adresse :</strong> 1 Chemin de Baudrigues, 11290 Roullens, France</li>
<li><strong>Email :</strong> <a href="mailto:befatiha11290@gmail.com">befatiha11290@gmail.com</a></li>
<li><strong>Téléphone :</strong> <a href="tel:+33619754815">06 19 75 48 15</a></li>
</ul>
</div>
<h2>Envoyer un Message</h2>
<form class="contact-form" action="mailto:befatiha11290@gmail.com" method="POST" enctype="text/plain">
<label for="name">Nom :</label>
<input type="text" id="name" name="name" required>
<label for="email">Email :</label>
<input type="email" id="email" name="email" required>
<label for="message">Message :</label>
<textarea id="message" name="message" rows="6" required></textarea>
<button type="submit">Envoyer</button>
</form>
</div>
</body>
</html>