<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coming Soon - bulgari-best.info</title>
<link rel="stylesheet" href="/assets/styles.css">
</head>
<body>
<div class="container">
<h1>Our Website is Coming Soon!</h1>
<p>We are working hard to give you the best experience. Stay tuned!</p>
<div class="countdown">
<div class="countdown-item">
<span id="days">00</span>
<label>Days</label>
</div>
<div class="countdown-item">
<span id="hours">00</span>
<label>Hours</label>
</div>
<div class="countdown-item">
<span id="minutes">00</span>
<label>Minutes</label>
</div>
<div class="countdown-item">
<span id="seconds">00</span>
<label>Seconds</label>
</div>
</div>
<form id="subscription-form" onsubmit="submitForm(event)">
<input type="email" id="email" placeholder="Enter your email" required>
<button type="submit">Subscribe</button>
<p id="subscription-message"></p>
</form>
<a href="news">Fox News</a>
<br>
<a href="about">Learn more about our email marketing agency</a>
<br>
<a href="opt-out">Unsubscribe from our newsletter</a>
<br>
<a href="privacy">Privacy Policy</a>
</div>
<script >
const launchDate = new Date('2023-05-01T00:00:00').getTime();
const daysElement = document.getElementById('days');
const hoursElement = document.getElementById('hours');
const minutesElement = document.getElementById('minutes');
const secondsElement = document.getElementById('seconds');
function updateCountdown() {
const currentTime = new Date().getTime();
const timeRemaining = launchDate - currentTime;
const days = Math.floor(timeRemaining / (1000 * 60 * 60 * 24));
const hours = Math.floor((timeRemaining % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((timeRemaining % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((timeRemaining % (1000 *
60)) / 1000);
daysElement.textContent = days.toString().padStart(2, '0');
hoursElement.textContent = hours.toString().padStart(2, '0');
minutesElement.textContent = minutes.toString().padStart(2, '0');
secondsElement.textContent = seconds.toString().padStart(2, '0');
}
function submitForm(event) {
event.preventDefault();
const email = document.getElementById('email').value;
document.getElementById('subscription-message').textContent = `Thank you for subscribing, ${email}!`;
}
updateCountdown();
setInterval(updateCountdown, 1000);
</script>
</body>
</html>