<meta charset="UTF-8">
<h1>PROGRAMA PARA NUMEROS PARES DEL 1 AL 100</h1>
<script>
function saltarlinea()
{
var brCount = '<br><br><hr><br>';
document.write(brCount);
}
function print (showPhrase)
{
document.write('<big>' + showPhrase + '</big>');
saltarlinea();
}
var counter = 1;
while(counter <= 100)
{
if(counter % 2 == 0)
{
print(counter);
if(counter == 100)
{
print('FIN');
}
}
counter ++;
}
</script>