v=<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>My Cloudflare Website</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            display: flex;

            justify-content: center;

            align-items: center;

            height: 100vh;

            background-color: #f4f4f9;

            margin: 0;

        }

        .container {

            text-align: center;

            background: white;

            padding: 50px;

            border-radius: 10px;

            box-shadow: 0 4px 8px rgba(0,0,0,0.1);

        }

        h1 { color: #f38020; } /* Cloudflare Orange! */

    </style>

</head>

<body>

    <div class="container">

        <h1>Welcome to My Website!</h1>

        <p>Powered by Cloudflare Pages.</p>

    </div>

</body>

</html>