<!
DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vente d'Ameublement sur Commande</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
color: #333;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
background: #333;
color: #fff;
padding: 1em 0;
text-align: center;
}
h1 {
margin: 0;
}
.main-content {
background: #fff;
padding: 2em;
margin: 2em 0;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.price-table {
width: 100%;
border-collapse: collapse;
margin: 1em 0;
}
.price-table th, .price-table td {
border: 1px solid #ddd;
padding: 0.75em;
text-align: left;
}
.price-table th {
background-color: #333;
color: #fff;
}
.contact-link {
display: inline-block;
margin: 1em 0;
padding: 0.75em 1.5em;
background: #25D366;
color: #fff;
text-decoration: none;
border-radius: 4px;
font-weight: bold;
}
.contact-link:hover {
background: #1DA851;
}
footer {
text-align: center;
padding: 1em;
background: #333;
color: #fff;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Vente d'Ameublement sur Commande</h1>
</div>
</header>
<div class="container">
<div class="main-content">
<h2>Présentation de notre Service</h2>
<p>Bienvenue sur notre site de vente d'ameublement sur commande. Nous
proposons une large gamme de meubles personnalisés selon vos besoins. Vous pouvez
choisir parmi nos différents modèles et définir vos préférences pour créer le
mobilier de vos rêves.</p>
<h2>Nos Prix</h2>
<table class="price-table">
<thead>
<tr>
<th>Article</th>
<th>Prix</th>
</tr>
</thead>
<tbody>
<tr>
<td>Canapé</td>
<td>250€</td>
</tr>
<tr>
<td>Table</td>
<td>150€</td>
</tr>
<tr>
<td>Chaise</td>
<td>50€</td>
</tr>
<!-- Ajoute d'autres articles et prix ici -->
</tbody>
</table>
<h2>Zone de Livraison</h2>
<p>Nous livrons dans un rayon de 50 km autour de notre centre de
service. Pour des livraisons au-delà de cette zone, veuillez nous contacter pour un
devis personnalisé.</p>
<h2>Contactez-Nous</h2>
<p>Pour toute question ou pour discuter de votre commande, n'hésitez
pas à nous contacter via le lien WhatsApp ci-dessous :</p>
<a href="https://wa.me/yourphonenumber" class="contact-link"
target="_blank">Contacter par WhatsApp</a>
</div>
</div>
<footer>
<p>© 2024 Vente d'Ameublement sur Commande</p>
</footer>
</body>
</html>