<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Welcome to Your TSDIAPI Server</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            text-align: center;
            background-color: #f4f4f9;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100vh;
        }

        h1 {
            font-size: 3rem;
            color: #4caf50;
        }

        p {
            font-size: 1.5rem;
            color: #333;
        }

        .emoji {
            font-size: 5rem;
        }

        footer {
            position: absolute;
            bottom: 1rem;
            width: 100%;
            color: #888;
            font-size: 0.9rem;
        }
    </style>
</head>

<body>
    <div class="emoji">🚀</div>
    <h1>Welcome to Your TSDIAPI Server!</h1>
    <p>Your journey starts here. Happy coding! 🎉</p>
    <footer>Generated with ❤️ by TSDIAPI Server</footer>
</body>

</html>