/nlcleaning-site |-- index.html |-- services.html |-- style.css |-- script.js |-- /images |-- logo.png |-- photos1.png |-- photos2.png |-- photos3.jpg NL Cleaning - Accueil
Nettoyage bureaux
Machine nettoyage
Sol brillant

Bienvenue chez NL Cleaning

22 ans d’expérience dans le nettoyage professionnel en Belgique.

NL Cleaning - Services

Nos Services

Contactez-nous

body { margin: 0; font-family: Arial, sans-serif; background: #f9f9f9; color: #333; text-align: center; } header { background: #ff6600; padding: 10px; display: flex; align-items: center; justify-content: space-between; } .logo { height: 60px; } nav a { margin: 0 15px; text-decoration: none; color: white; font-weight: bold; } nav a:hover { text-decoration: underline; } .hero { padding: 20px; } .slideshow-container { max-width: 100%; position: relative; margin: auto; } .slide { display: none; } .slide img { width: 100%; border-radius: 10px; } h1 { color: #ff6600; } h2 { color: #1e90ff; } .contact-form { display: flex; flex-direction: column; width: 80%; max-width: 400px; margin: auto; } .contact-form input, .contact-form textarea { margin: 10px 0; padding: 10px; border: 1px solid #ccc; border-radius: 5px; } .contact-form button { background: #1e90ff; color: white; padding: 10px; border: none; border-radius: 5px; cursor: pointer; } .contact-form button:hover { background: #ff6600; } footer { background: #ff6600; color: white; padding: 15px; margin-top: 20px; } let slideIndex = 0; showSlides(); function showSlides() { let slides = document.getElementsByClassName("slide"); for (let i = 0; i < slides.length; i++) { slides[i].style.display = "none"; } slideIndex++; if (slideIndex > slides.length) { slideIndex = 1 } slides[slideIndex - 1].style.display = "block"; setTimeout(showSlides, 3000); // Change image every 3 seconds }