<!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>Wait for 5 seconds to see the download button</title>
<script>
function countdown() {
var seconds = document.getElementById("seconds");
var count = parseInt(seconds.textContent);
if (count > 0) {
seconds.textContent = count - 1;
} else {
clearInterval(countdownInterval);
document.getElementById("download-button").style.display = "block";
}
}
var countdownInterval = setInterval(countdown, 1000);
</script>
</head>
<body>
<h1>Wait for 5 seconds to see the download button</h1>
<p>There are <span id="seconds">5</span> seconds left before the download button is displayed.</p>
<button id="download-button" style="display: none;">Download File</button>
</body>
</html>