mirror of
https://github.com/milk-net/milk-net.github.io.git
synced 2025-04-20 10:03:41 -05:00
this fucking sucks to do holy shit
This commit is contained in:
parent
1f0844f6ab
commit
8431aeda71
1 changed files with 8 additions and 5 deletions
|
@ -11,13 +11,14 @@
|
||||||
<header>
|
<header>
|
||||||
<h1>MilkNet Casino</h1>
|
<h1>MilkNet Casino</h1>
|
||||||
<p>Feeling lucky?</p>
|
<p>Feeling lucky?</p>
|
||||||
|
<p id="balance">Balance: $1000</p>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<div class="game-selection">
|
<div class="game-selection">
|
||||||
<button onclick="showHorseRacing()">Horse Racing</button>
|
<button onclick="showGame('horse-racing')">Horse Racing</button>
|
||||||
<button onclick="showBlackjack()">Blackjack</button>
|
<button onclick="showGame('blackjack')">Blackjack</button>
|
||||||
<button onclick="showSlots()">Slots</button>
|
<button onclick="showGame('slots')">Slots</button>
|
||||||
<button onclick="showCoinFlip()">Coin Flip</button>
|
<button onclick="showGame('coin-flip')">Coin Flip</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="horse-racing" class="game" style="display: none;">
|
<div id="horse-racing" class="game" style="display: none;">
|
||||||
|
@ -42,13 +43,15 @@
|
||||||
<h2>Blackjack</h2>
|
<h2>Blackjack</h2>
|
||||||
<p>Try to beat the dealer with a better hand!</p>
|
<p>Try to beat the dealer with a better hand!</p>
|
||||||
<button onclick="startBlackjack()">Start Game</button>
|
<button onclick="startBlackjack()">Start Game</button>
|
||||||
|
<p id="blackjack-status"></p>
|
||||||
|
<p id="blackjack-cards"></p>
|
||||||
<div id="blackjack-result"></div>
|
<div id="blackjack-result"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="slots" class="game" style="display: none;">
|
<div id="slots" class="game" style="display: none;">
|
||||||
<h2>Slots</h2>
|
<h2>Slots</h2>
|
||||||
<p>Spin, spin, spin!</p>
|
<p>Spin, spin, spin!</p>
|
||||||
<button onclick="startSlots()">Spin</button>
|
<button onclick="playSlots()">Spin</button>
|
||||||
<div id="slots-result"></div>
|
<div id="slots-result"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue