Files
2026-ads-faltas/exemplos/gabriel_henrique/desafio-for.php
2026-05-21 21:13:49 -03:00

33 lines
497 B
PHP

<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>Contagem Regressiva</title>
<style>
.alerta {
color: red;
font-weight: bold;
}
</style>
</head>
<body>
<?php
for ($i = 10; $i >= 1; $i--) {
// Destacar os 3 últimos segundos
if ($i <= 3) {
echo "<h3 class='alerta'>$i</h3>";
} else {
echo "<h3>$i</h3>";
}
}
// Mensagem final
echo "<h1>FOGUETE LANÇADO! </h1>";
?>
</body>
</html>