WEBLEB
Home
Editor
Accedi
Pro
Italiano
English
Français
Español
Português
Deutsch
Italiano
हिंदी
Un codice di bachir123
1320
bachir123
Apri nell'Editor
Video
Pubblica il Tuo Codice
0
Consigliato
15 May 2025
Un codice di facontheo1
15 July 2025
Modello HTML per generatore di citazioni in francese
24 September 2025
Codice grafico interattivo SVG Dragon
HTML
Copy
Document
Switch Mode
CSS
Copy
body { background-color: white; color: black; transition: background-color 0.3s ease, color 0.3s ease; display: flex; align-items: center; justify-content: center; margin: 250px; } body.dark-mode { background-color: black; color: white; }<!-- Replace with your HTML Code (Leave empty if not needed) -->
JS
Copy
const toggleButton = document.getElementById("theme-toggle"); toggleButton.addEventListener("click", () => { document.body.classList.toggle("dark-mode"); });/* Replace with your JS Code (Leave empty if not needed) */