mirror of
https://github.com/milk-net/milk-net.github.io.git
synced 2025-04-19 17:43:42 -05:00
Update index.html
This commit is contained in:
parent
0c4031a6b4
commit
b94bf2fcf2
1 changed files with 23 additions and 14 deletions
|
@ -3,14 +3,14 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Casino Games</title>
|
<title>MilkNet | Casino</title>
|
||||||
<link rel="stylesheet" href="style.css">
|
<link rel="stylesheet" href="style.css">
|
||||||
<script src="script.js" defer></script>
|
<script src="script.js" defer></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
<h1>Welcome to the Casino</h1>
|
<h1>MilkNet Casino</h1>
|
||||||
<p>Choose a game to play!</p>
|
<p>Feeling lucky?</p>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<div class="game-selection">
|
<div class="game-selection">
|
||||||
|
@ -27,10 +27,10 @@
|
||||||
<!-- Betting on horses -->
|
<!-- Betting on horses -->
|
||||||
<p>Choose your horse:</p>
|
<p>Choose your horse:</p>
|
||||||
<select id="horse-selection">
|
<select id="horse-selection">
|
||||||
<option value="Horse 1">Horse 1</option>
|
<option value="Horse 1">🐎 Juan</option>
|
||||||
<option value="Horse 2">Horse 2</option>
|
<option value="Horse 2">🐎 Slow Blud</option>
|
||||||
<option value="Horse 3">Horse 3</option>
|
<option value="Horse 3">🐎 Fast Blud</option>
|
||||||
<option value="Horse 4">Horse 4</option>
|
<option value="Horse 4">🐎 Alice</option>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<button onclick="startHorseRacing()">Start Race</button>
|
<button onclick="startHorseRacing()">Start Race</button>
|
||||||
|
@ -47,18 +47,27 @@
|
||||||
|
|
||||||
<div id="slots" class="game" style="display: none;">
|
<div id="slots" class="game" style="display: none;">
|
||||||
<h2>Slots</h2>
|
<h2>Slots</h2>
|
||||||
<p>Spin the reels and see if you win!</p>
|
<p>Spin, spin, spin!</p>
|
||||||
<button onclick="startSlots()">Spin</button>
|
<button onclick="startSlots()">Spin</button>
|
||||||
<div id="slots-result"></div>
|
<div id="slots-result"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="coin-flip" class="game" style="display: none;">
|
<div id="coin-flip" class="game" style="display: none;">
|
||||||
<h2>Coin Flip</h2>
|
<h2>Coin Flip</h2>
|
||||||
<p>Flip a coin and call heads or tails!</p>
|
<p>Heads or Tails. It's simple. Not a big choice. Or is it?</p>
|
||||||
|
|
||||||
|
<!-- Player choice -->
|
||||||
|
<p>Make your choice:</p>
|
||||||
|
<select id="coin-choice">
|
||||||
|
<option value="Heads">Heads</option>
|
||||||
|
<option value="Tails">Tails</option>
|
||||||
|
</select>
|
||||||
|
|
||||||
<button onclick="flipCoin()">Flip Coin</button>
|
<button onclick="flipCoin()">Flip Coin</button>
|
||||||
<div id="coin-flip-result"></div>
|
<div id="coin-flip-result"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
<p>Inspired by github.com/Xameren/Casino</p>
|
<p>Inspired by github.com/Xameren/Casino</p>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
Loading…
Add table
Reference in a new issue