OpenAI GPT-4o

OpenAIMay 2024

What it wrote

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Super Cool Incremental Game</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div id="gameContainer">
        <h1>Super Cool Incremental Game</h1>
        <div id="resourceDisplay">
            <p>Resource: <span id="resourceCount">0</span></p>
        </div>
        <button id="collectResource">Collect Resource</button>
        <div id="upgrades">
            <h2>Upgrades</h2>
            <button id="upgradeButton">Upgrade (Cost: 10)<span id="upgradeCost"></span></button>
        </div>
    </div>
    <script src="script.js"></script>
</body>
</html>