<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Website is Under Construction</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background: #f2f2f2;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
color: #333;
}
.container {
max-width: 600px;
padding: 20px;
}
h1 {
font-size: 3rem;
color: #3498db;
}
p {
font-size: 1.2rem;
margin-top: -10px;
}
.loader {
margin: 30px auto;
border: 6px solid #ddd;
border-top: 6px solid #3498db;
border-radius: 50%;
width: 60px;
height: 60px;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
footer {
margin-top: 20px;
font-size: 0.9rem;
color: #777;
}
</style>
</head>
<body>
<div class="container">
<h1>🚧 Under Construction</h1>
<p>Our website is currently being built. Please check back soon!</p>
<div class="loader"></div>
<footer>© 2025 Your Website Name</footer>
</div>
</body>
</html>