<!DOCTYPE html>
<html lang="es">
<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>Document</title>
</head>
<body>
<h1>Números Pares del 1 al 100</h1>
<script>
function saltarLinea() {
document.write("<br>");
}
function imprimir(frase) {
document.write(frase);
saltarLinea();
}
imprimir("Números pares del 1 al 100: ")
let numeros=0
while(numeros <=100){
numeros++;
if(numeros%2==0){
imprimir(" "+numeros);}
}
</script>
</body>
</html>