File size: 1,093 Bytes
c1f633b
 
 
 
351b9d7
337e62e
c1f633b
 
 
 
 
 
351b9d7
c1f633b
 
 
 
 
94666e0
c1f633b
 
 
 
 
 
8290e8c
 
 
 
c1f633b
 
 
 
e00558f
351b9d7
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!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>