<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Display IP Address</title>
    <style>
        /* CSS styles */
        body {
            font-family: Arial, sans-serif;
            text-align: center;
        }
        .ip-address {
            font-size: 2em; /* Adjust the font size as needed */
            margin-top: 20px; /* Add space above the IP address */
        }
    </style>
</head>
<body>
    <h1>Your IP Address is:</h1>
    <div class="ip-address">216.73.216.229</div>
</body>
</html>