mirror of
https://github.com/milk-net/milk-net.github.io.git
synced 2025-04-19 05:33:40 -05:00
66 lines
2 KiB
HTML
66 lines
2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Casino Games</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<script src="script.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Welcome to the Casino</h1>
|
|
<p>Choose a game to play!</p>
|
|
</header>
|
|
|
|
<div class="game-selection">
|
|
<button onclick="showHorseRacing()">Horse Racing</button>
|
|
<button onclick="showBlackjack()">Blackjack</button>
|
|
<button onclick="showSlots()">Slots</button>
|
|
<button onclick="showCoinFlip()">Coin Flip</button>
|
|
</div>
|
|
|
|
<div id="horse-racing" class="game" style="display: none;">
|
|
<h2>Horse Racing</h2>
|
|
<p>Place your bet on a horse and watch them race!</p>
|
|
|
|
<!-- Betting on horses -->
|
|
<p>Choose your horse:</p>
|
|
<select id="horse-selection">
|
|
<option value="Horse 1">Horse 1</option>
|
|
<option value="Horse 2">Horse 2</option>
|
|
<option value="Horse 3">Horse 3</option>
|
|
<option value="Horse 4">Horse 4</option>
|
|
</select>
|
|
|
|
<button onclick="startHorseRacing()">Start Race</button>
|
|
<div id="race-result"></div>
|
|
</div>
|
|
|
|
|
|
<div id="blackjack" class="game" style="display: none;">
|
|
<h2>Blackjack</h2>
|
|
<p>Try to beat the dealer with a better hand!</p>
|
|
<button onclick="startBlackjack()">Start Game</button>
|
|
<div id="blackjack-result"></div>
|
|
</div>
|
|
|
|
<div id="slots" class="game" style="display: none;">
|
|
<h2>Slots</h2>
|
|
<p>Spin the reels and see if you win!</p>
|
|
<button onclick="startSlots()">Spin</button>
|
|
<div id="slots-result"></div>
|
|
</div>
|
|
|
|
<div id="coin-flip" class="game" style="display: none;">
|
|
<h2>Coin Flip</h2>
|
|
<p>Flip a coin and call heads or tails!</p>
|
|
<button onclick="flipCoin()">Flip Coin</button>
|
|
<div id="coin-flip-result"></div>
|
|
</div>
|
|
|
|
<footer>
|
|
<p>Inspired by github.com/Xameren/Casino</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|