OpenAI GPT-OSS 120B (medium)

OpenAIAugust 2025

What it wrote

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <meta name="description" content="Quantum Overlord – a cyber‑punk incremental clicker where you generate Qubits, upgrade quantum rigs, and unlock cosmic power." />
  <title>Quantum Overlord</title>
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet" />
  <link rel="stylesheet" href="style.css" />
</head>
<body>
  <header>
    <h1>Quantum Overlord</h1>
  </header>
  <main>
    <section id="core">
      <button id="click-btn" class="glow-btn">
        <img src="assets/quantum_core.png" alt="Quantum Core" class="core-icon" />
        <span>Generate Qubit</span>
      </button>
      <p class="resource-display">Qubits: <span id="qubit-count">0</span></p>
    </section>
    <section id="upgrades" class="cards-container">
      <!-- Upgrade cards will be generated by JavaScript -->
    </section>
  </main>
  <footer>
    <p>© 2026 Quantum Overlord – All rights reserved.</p>
  </footer>
  <script defer src="game.js"></script>
</body>
</html>