<!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>SECUENCIA DE 2 EN 2</title>
</head>
<body>
<h1>SECUENCIA</h1>
<script>
function saltarLinea() {
document.write("<br><hr><br>");
}
function imprimir(frase) {
document.write("<big>" + frase + "</big>");
saltarLinea();
}
var secuencia = 2;
while(secuencia <= 100) {
imprimir(secuencia);
secuencia = secuencia + 2;
}
imprimir("FIN DE LA SECUENCIA");
</script>
</body>
</html>