Mi aporte:
<meta charset="utf-8">
<style type="text/css">
body {
background-color: black;
color: white;
}
</style>
<h2>Números pares del 1 al 100</h2>
<script type="text/javascript">
function saltarLinea() {
document.write("<br>");
document.write("<br>");
document.write("<br>");
}
function imprimir(texto) {
document.write(texto);
saltarLinea();
}
var contador = 1;
var numeroPar = 0;
while (contador <= 50) {
numeroPar = numeroPar + 2;
imprimir(numeroPar);
contador++;
}
imprimir("FIN");
</script>