Code Compiler – Run HTML, CSS & JS Online
Run HTML, CSS & JS Instantly
Editor
Output
`; editor.setValue(defaultHTML);function runCode() { const code = editor.getValue(); const frame = document.getElementById("output"); const doc = frame.contentDocument || frame.contentWindow.document; doc.open(); doc.write(code); doc.close(); }function clearCode() { editor.setValue(""); runCode(); }function toggleTheme() { document.body.classList.toggle("light"); const isLight = document.body.classList.contains("light"); editor.setOption("theme", isLight ? "default" : "dracula"); document.getElementById("theme-toggle").innerHTML = ` ${isLight ? "Light" : "Dark"}`; }runCode();