Avisvsv / index.html
Reaperxxxx's picture
Update index.html
337e62e verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>Test</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<button id="back-btn">Back</button>
<h1>Test</h1>
<div class="balance-display">Balance: <span id="balance">0.00</span> tokens</div>
</header>
<main>
<div class="game-screen">
<img src="https://i.im.ge/2025/01/04/zzPKC0.background.jpeg" alt="Sky Background" class="sky-image" />
<img src="plane.png" alt="Plane" class="plane" id="plane" />
<div class="multiplier" id="multiplier">1.0x</div>
</div>
<div class="controls">
<input id="stake-amount" type="number" placeholder="Enter stake amount" />
<div class="buttons-group">
<button id="stake-btn">Bet</button>
<button id="cashout-btn" disabled>Cashout</button>
</div>
</div>
</main>
</div>
<script src="script.js"></script>
</body>
</html>