Webpage Builder
Light theme
Run
Save
Editor
HTML
CSS
JS
Hello world
Click me
body { font-family: sans-serif; padding: 20px; } button { padding: 10px 20px; background: #38bdf8; border: none; border-radius: 6px; color: white; }
document.addEventListener("DOMContentLoaded", () => { const btn = document.getElementById("btn"); if (btn) btn.onclick = () => alert("Hello from JS!"); });
Preview