<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <title>Gabe's New Project - Coming Soon!</title>    <!--         We are stripping down the CSS to prevent the server from misinterpreting the file.        The basic styles are now moved into simple HTML tags.     -->    <style>        /* Only use basic, universally compatible CSS here */        body {            /* Black Background */            background-color: #000000;            /* Simple Green Text */            color: #00FF00;                        /* Simpler cursor to avoid Data URI conflicts */            cursor: crosshair;                         font-family: 'Courier New', monospace;             margin: 0;            padding: 0;            height: 100%;        }                /* The main text uses basic CSS for sizing */        .coming-soon-text {            font-size: 48px; /* Fixed size for reliability */            font-weight: bold;            letter-spacing: 5px;            padding: 20px;        }    </style></head><body style="min-height: 100vh; display: flex; justify-content: center; align-items: center;">
    <!--         We rely on basic HTML tags like <center> and <font> for maximum compatibility.        NOTE: I've used a combination of modern (flexbox on body) and classic (<center>)        to ensure positioning works on various browser ages.    -->    <CENTER>        <div class="coming-soon-text">            COMING SOON        </div>    </CENTER>
</body></html>