Adjunto mi código con una solución al ejercicio.
<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>Números pares</title>
</head>
<body>
<h2>PROGRAMA DE NÚMEROS PARES</h2>
<script>
function frase(frase){
document.write("<br>")
document.write(frase)
}
cont=0;
while(cont <100){
cont+=2;
document.write(cont+"<br>")
}
frase("FIN.")
</script>
</body>
</html>