HTML: 0
CSS: 0
JS: 0
";
navigator.clipboard.writeText(combinedCode);
this.innerHTML = "✓ Copied";
setTimeout(() => {
this.innerHTML = "📋 Copy";
},1500);
});
clearBtn.addEventListener("click", function(){
if(confirm("Clear all code?")){
htmlCode.value = "";
cssCode.value = "";
jsCode.value = "";
updateCounts();
updatePreview();
}
});
downloadBtn.addEventListener("click", function(){
const fileContent = `
Downloaded Project
${htmlCode.value}