fork download
  1.  
Success #stdin #stdout 0.02s 25456KB
stdin
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Cloud Gaming Platform</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #1e1e2f;
            color: #ffffff;
        }
        header {
            background-color: #2c2c54;
            padding: 20px;
            text-align: center;
        }
        header h1 {
            margin: 0;
            color: #4CAF50;
        }
        section {
            padding: 20px;
            text-align: center;
        }
        .features {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        .feature {
            background-color: #33334d;
            border: 1px solid #4CAF50;
            border-radius: 8px;
            margin: 10px;
            padding: 20px;
            width: 250px;
        }
        video {
            margin-top: 20px;
            border: 2px solid #4CAF50;
            border-radius: 8px;
        }
        footer {
            background-color: #2c2c54;
            padding: 10px;
            text-align: center;
            margin-top: 20px;
        }
    </style>
</head>
<body>
    <header>
        <h1>Welcome to CloudPlay</h1>
        <p>Revolutionizing Gaming, One Stream at a Time</p>
    </header>
    <section>
        <h2>Why Choose CloudPlay?</h2>
        <p>Play anywhere, anytime with seamless access to top-quality games without expensive hardware.</p>
        <div class="features">
            <div class="feature">
                <h3>High-Quality Streaming</h3>
                <p>Experience 4K gaming with ultra-low latency.</p>
            </div>
            <div class="feature">
                <h3>Cross-Platform Support</h3>
                <p>Play on PC, mobile, and smart TVs.</p>
            </div>
            <div class="feature">
                <h3>Massive Game Library</h3>
                <p>Access hundreds of AAA and indie titles.</p>
            </div>
        </div>
        <h2>Watch Our Demo</h2>
        <video controls width="600">
            <source src="demo.mp4" type="video/mp4">
            Your browser does not support the video element.
        </video>
    </section>
    <footer>
        <p>&copy; 2025 CloudPlay. All Rights Reserved.</p>
    </footer>
</body>
</html>
stdout
Standard output is empty