<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Index</title>
<script>
function breakRow(){
document.write("<br>");
document.write("<br>");
}
function show(frase){
document.write(frase);
breakRow();
}
var númeroInicial = 20;
var númeroFinal = 0;
while(númeroInicial >= númeroFinal){
show("Número: " + númeroInicial);
númeroInicial = númeroInicial - 1;
}
show("Fim");
</script>
</head>
<body>
</body>
</html>