me tomo un pocoo de tiempo, pero al final valió cada bendito segundo:)))
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ejercicio</title>
</head>
<body>
<div id="output"></div>
<script>
function imprimir(value) {
var p = document.createElement('p');
var outputDiv = document.getElementById('output');
p.textContent = value;
outputDiv.appendChild(p);
}
let ejecutar_bucle = true;
var numero = parseInt(prompt("Ingrese un numero: "));
do {
if (numero % 2 == 0) {
imprimir(numero);
}
numero -= 1;
} while (numero >= 0);
</script>
</body>
</html>