Untitled 1
Untitled 1
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Countdown Timer</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f7f7f7;
}
#timer {
font-size: 5em;
border: 2px solid #ccc;
padding: 20px;
border-radius: 10px;
background-color: white;
}
</style>
</head>
<body>
<div id="timer">00:00:00</div>
<script>
// Set the countdown time in seconds
var countdownTime = 60; // 1 minute for example
if (--countdownTime < 0) {
clearInterval(intervalId);
}
}