<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Server Test Page</title>
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
text-align: center;
padding-top: 100px;
}
.box {
background: white;
display: inline-block;
padding: 30px 50px;
border-radius: 10px;
box-shadow: 0 0 10px #aaa;
}
</style>
</head>
<body>
<div class="box">
<h1>Coming Soon!</h1>
<p>This is a page served from your domain.</p>
<p>Time: <span id="time"></span></p>
</div>
<script>
// Show current server time using JavaScript (client-side)
document.getElementById('time').innerText = new Date().toLocaleString();
</script>
</body>
</html>