File: /opt/wpsites/sculptorink.com/index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Private Web Server</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
.container {
background: #fff;
padding: 20px 30px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 8px;
max-width: 400px;
}
h1 {
color: #0073e6;
font-size: 1.8rem;
}
p {
font-size: 1rem;
line-height: 1.5;
}
.email {
color: #0073e6;
text-decoration: none;
font-weight: bold;
}
.email:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>Private Web Server</h1>
<p>This is a private web server. If you believe you should have access, please contact the webmaster.</p>
<p>Email: <a href="mailto:support@dataconn.net" class="email">support@dataconn.net</a></p>
</div>
</body>
</html>