<!
DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MELDON - Services Électrotechniques</title>
<link rel="stylesheet" href="[Link]">
<link rel="stylesheet"
href="[Link]
</head>
<body>
<header>
<h1>Bienvenue chez MELDON</h1>
<p>Votre partenaire en services électrotechniques de qualité</p>
</header>
<nav>
<ul>
<li><a href="#about">À propos</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#gallery">Galerie</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<section id="about">
<h2>À propos de MELDON</h2>
<p>Nous sommes un groupe de techniciens qualifiés spécialisés dans l'électricité
bâtiment et l'électronique. Chez MELDON, nous nous engageons à fournir des services de
haute qualité pour répondre aux besoins de nos clients.</p>
</section>
<section id="services">
<h2>Nos Services</h2>
<ul>
<li>Installation électrique bâtiment</li>
<li>Maintenance et dépannage électrique</li>
<li>Conception de circuits électroniques</li>
<li>Automatisation et contrôle industriel</li>
<li>Conception des alarmes anti-vol</li>
<li>Consultation et conseils techniques</li>
</ul>
</section>
<section id="gallery">
<h2>Galerie</h2>
<div class="gallery">
<img src="[Link]" alt="Projet 1">
<img src="[Link]" alt="Projet 2">
<img src="[Link]" alt="Projet 3">
</div>
</section>
<section id="contact">
<h2>Contactez-nous</h2>
<form id="contact-form">
<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" required></textarea>
<button type="submit">Envoyer</button>
</form>
<p>Email : <a href="[Link]
<p>Téléphone : <a href="[Link] 6948 6833</a></p>
<p>Adresse : Gbjedjromede, centre d'accueil</p>
<p>WhatsApp : <a href="[Link] target="_blank">
<img src="[Link]
alt="WhatsApp" style="width:24px;height:24px;"> Cliquez ici pour discuter sur
WhatsApp</a></p>
</section>
<footer>
<p>© 2025 MELDON. Tous droits réservés.</p>
</footer>
<script src="[Link]"></script>
</body>
</html>
/* [Link] */
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
color: #333;
}
header {
background-color: #0066cc;
color: white;
padding: 30px 0;
}
header h1 {
margin: 0;
font-size: 2.5em;
animation: fadeIn 2s;
}
header p {
margin: 0;
font-size: 1.2em;
}
nav {
background-color: #00509e;
padding: 10px 0;
box-shadow: 0 4px 2px -2px gray;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
}
nav ul li {
margin-right: 20px;
}
nav ul li a {
color: white;
text-decoration: none;
padding: 14px 20px;
display: block;
font-weight: bold;
transition: background-color 0.3s;
}
nav ul li a:hover {
background-color: #00376d;
border-radius: 4px;
}
section {
margin: 100px auto 20px auto;
max-width: 800px;
text-align: left;
padding: 20px;
background-color: white;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
section h2 {
color: #0066cc;
margin-top: 0;
animation: fadeIn 2s;
}
.gallery {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.gallery img {
width: 30%;
margin: 10px 0;
border-radius: 8px;
transition: transform 0.3s;
}
.gallery img:hover {
transform: scale(1.05);
}
form {
display: flex;
flex-direction: column;
}
form label {
margin: 10px 0 5px;
}
form input,
form textarea {
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 4px;
width: 100%;
}
form button {
padding: 10px;
background-color: #0066cc;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
form button:hover {
background-color: #00509e;
}
footer {
background-color: #00509e;
color: white;
padding: 10px 0;
position: relative;
width: 100%;
text-align: center;
bottom: 0;
}
footer p {
margin: 0;
}
img {
vertical-align: middle;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
// [Link]
[Link]('DOMContentLoaded', function() {
alert('Bienvenue chez MELDON - Votre partenaire en services électrotechniques de
qualité');
// Formulaire de contact
const form = [Link]('contact-form');
[Link]('submit', function(event) {
[Link]();
alert('Merci de nous avoir contactés, nous reviendrons vers vous bientôt!');
[Link]();
});
});