Skip to main content

Custom Default Site

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Unknown Host</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            background-color: #f8f9fa;
        }
        .container {
            text-align: center;
        }
        h1 {
            font-size: 2.5rem;
            color: #343a40;
        }
        p {
            font-size: 1.25rem;
            color: #6c757d;
        }

    </style>
</head>
<body>
    <div class="container">
        <h1>Unknown Host</h1>
        <p>The server could not recognize the hostname in the request.</p>
        <p>Please check the URL and try again.</p>
    </div>
</body>
</html>