🏠 Accueil
Web
Studio
🚀 Voir le résultat en plein écran
</>
HTML
Bienvenue sur ma page !
Ce rendu s'affiche dans un nouvel onglet complet.
Clique ici
#
CSS
body { background: #f8fafc; font-family: system-ui, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .card { background: white; padding: 2rem; border-radius: 1rem; box-shadow: 0 10px 25px rgba(0,0,0,0.1); text-align: center; } button { background: #2563eb; color: white; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; }
{ }
JavaScript
const btn = document.getElementById('btn'); btn.addEventListener('click', () => { alert('Bravo ! Tu es sur une page complète !'); document.body.style.backgroundColor = '#dcfce7'; });