-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (45 loc) · 1.2 KB
/
index.html
File metadata and controls
52 lines (45 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Slot Machine</title>
<!-- CSS Section -->
<link href="css/main.css" rel="stylesheet" />
</head>
<body>
<div>
<h1>Slot Machine</h1>
<div>
<h2>Player Statistics</h2>
<hr />
<ul id="playerStats">
<li id="jackpot">Jackpot: 500</li>
<li id="playerMoney">Player Money: 1000</li>
<li id="playerTurn">Turn: 0</li>
<li id="playerWins">Wins: 0</li>
<li id="playerLosses">Losses: 0</li>
<li id="playerWinRatio">Win Ratio: 0%</li>
</ul>
<hr />
</div>
<div id="betEntry">
<p>Place Your Bet Here</p>
<input id="playerBet" name="points" value="10">
<hr />
</div>
<button id="spinButton">Spin!</button>
</div>
<div id="result">
<h2>Spin Result</h2>
<hr />
<p></p>
</div>
<hr />
<div id="winOrLose">
<p></p>
</div>
<!-- JavaScript Section -->
<script src="js/jquery.js"></script>
<script src="js/main.js"></script>
</body>
</html>