Update index.html

This commit is contained in:
Voxel 2025-04-14 17:41:16 -04:00 committed by GitHub
parent 6f9f5eecff
commit d12ef50b40
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,10 +23,21 @@
<div id="horse-racing" class="game" style="display: none;"> <div id="horse-racing" class="game" style="display: none;">
<h2>Horse Racing</h2> <h2>Horse Racing</h2>
<p>Place your bet on a horse and watch them race!</p> <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> <button onclick="startHorseRacing()">Start Race</button>
<div id="race-result"></div> <div id="race-result"></div>
</div> </div>
<div id="blackjack" class="game" style="display: none;"> <div id="blackjack" class="game" style="display: none;">
<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>