NovaStudio EditorNEditor visual HTML, CSS y JavaScript en tiempo real Cambiar Tema Exportar Ejecutar Proyecto HTMLCSSJavaScript Vista previa en vivo `;frame.srcdoc = finalCode;}function exportProject(){const html = novaHTML.getValue(); const css = novaCSS.getValue(); const js = novaJS.getValue();const build = `${html} `;const blob = new Blob([build],{ type:'text/html' });const downloader = document.createElement('a');downloader.href = URL.createObjectURL(blob);downloader.download = 'NovaStudioProject.html';downloader.click();}function switchTheme(){darkMode = !darkMode;monaco.editor.setTheme( darkMode ? 'vs-dark' : 'vs' );}