<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Website Under Construction</title>
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
color: #333;
text-align: center;
padding: 100px 20px;
}
.container {
background: #fff;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
max-width: 500px;
margin: auto;
padding: 40px;
}
h1 {
font-size: 2em;
margin-bottom: 10px;
}
p {
font-size: 1.1em;
margin-bottom: 30px;
}
.loader {
border: 6px solid #eee;
border-top: 6px solid #007bff;
border-radius: 50%;
width: 50px;
height: 50px;
margin: 0 auto 20px;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
footer {
margin-top: 40px;
font-size: 0.9em;
color: #777;
}
</style>
</head>
<body>
<div class="container">
<div class="loader"></div>
<h1>Website Under Construction</h1>
<p>We’re working hard to bring something great. Please check back soon!</p>
<footer>© <span id="year"></span> Your Company Name</footer>
</div>
<script>
// Automatically update year
document.getElementById("year").textContent = new Date().getFullYear();
</script>
</body>
</html>