textarea {
width: 100%;
height: 150px;
margin-bottom: 10px;
}
#renderBox {
border: 1px solid #ccc;
padding: 15px;
min-height: 100px;
background-color: #f9f9f9;
}
Pegar HTML y Renderizar
Pegá tu código HTML aquí:
Renderizar HTML
Vista Renderizada:
function verHTML() {
const contenido = document.getElementById('inputHtml').value;
document.getElementById('renderBox').innerHTML = contenido;
}