Avisvsv / index.html
Reaperxxxx's picture
Update index.html
dcbd7e3 verified
raw
history blame
1.18 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aviator Game</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<button id="back-btn">Back</button>
<h1>REIKER AV</h1>
<div class="balance-display">Balance: <span id="balance">0.00</span> tokens</div>
</header>
<main>
<div class="game-screen">
<video class="sky-video" autoplay loop muted>
<source src="https://files.catbox.moe/z1ghz2.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<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>