-60%
Version :
Latest Version
ivana/
├── index.html
├── assets/
│ ├── css/
│ ├── js/
│ └── images/
└── README.md
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ivana - Under Construction</title>
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<!-- Main Container -->
<div class="container">
<h1>We Are Coming Soon!</h1>
<p>Our website is currently under construction. Stay tuned for something amazing!</p>
<!-- Countdown Timer -->
<div class="countdown">
<div class="countdown-item">
<span id="days">00</span>
<p>Days</p>
</div>
<div class="countdown-item">
<span id="hours">00</span>
<p>Hours</p>
</div>
<div class="countdown-item">
<span id="minutes">00</span>
<p>Minutes</p>
</div>
<div class="countdown-item">
<span id="seconds">00</span>
<p>Seconds</p>
</div>
</div>
<form class="subscribe-form">
<input type="email" placeholder="Enter your email to stay updated" required>
<button type="submit">Subscribe</button>
</form>
<footer>
<p>© 2023 Ivana. All rights reserved.</p>
</footer>
</div>
<script src="assets/js/scripts.js"></script>
</body>
</html>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
color: #333;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
text-align: center;
}
h1 {
font-size: 36px;
margin-bottom: 20px;
}
p {
font-size: 18px;
margin-bottom: 40px;
}
.countdown {
display: flex;
justify-content: center;
margin-bottom: 40px;
}
.countdown-item {
margin: 0 15px;
}
.countdown-item span {
font-size: 24px;
font-weight: bold;
}
.subscribe-form {
margin: 20px 0;
}
.subscribe-form input {
padding: 10px;
font-size: 16px;
width: 250px;
border: 1px solid #ccc;
border-radius: 5px;
}
.subscribe-form button {
padding: 10px 20px;
font-size: 16px;
background-color: #28a745;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
footer {
margin-top: 40px;
}
// Countdown Timer
const countdownDate = new Date("2024-01-01T00:00:00").getTime();
const countdownFunction = setInterval(() => {
const now = new Date().getTime();
const distance = countdownDate - now;
const days = Math.floor(distance / (1000 * 60 * 60 * 24));
const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((distance % (1000 * 60)) / 1000);
document.getElementById("days").innerText = days < 10 ? "0" + days : days;
document.getElementById("hours").innerText = hours < 10 ? "0" + hours : hours;
document.getElementById("minutes").innerText = minutes < 10 ? "0" + minutes : minutes;
document.getElementById("seconds").innerText = seconds < 10 ? "0" + seconds : seconds;
if (distance < 0) {
clearInterval(countdownFunction);
document.querySelector('.container').innerHTML = "<h1>We Are Live!</h1><p>Check back for our amazing content!</p>";
}
}, 1000);
1. All digital products are the most recent version, with no possibility of free updates. After payment, you can request an update to the most recent version for 5 days if a new version is released. We free support within 5 days.
2. If a license is required (Excludes WHMCS license , we provide only method not license), please contact us via email or ticket for assistance with activation. Our license is only valid for activation and does not include support.
3. We provide Mobile, PHP script installation services for $19.90 / ₹1700. Please create a backup after installation as we do not support re-installation. For mobile app source code, we do not offer installation services.
4. If you have any questions, please contact us by email [email protected] or create a ticket on this page
5. Please note that any digital products presented on the website do not contain malicious code, viruses or advertising. You will receive the original files from the developers. We do not sell any products that have been downloaded from other websites.
6. The response time can last up to 6 hours.
No account yet?
Create an Account