-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (34 loc) · 1.23 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrap">
<h1>Slot Machine</h1>
<section class="game">
<div class="color"></div>
<div class="color"></div>
<div class="color"></div>
</section>
<section class="play">
<input type="number" placeholder="Your bet:" id="bid">
<button id="start">Spin!</button>
</section>
<section class="panel">YOUR BALANCE BEFORE NEXT GAME: <span class="wallet"></span></section>
<section class="score">
<span class="result"></span> You've played <span class="number"></span> games. You've won: <span class="win"></span> so far, and lost: <span class="loss"></span> times.
</section>
</div>
<script src="Wallet.js"></script>
<script src="Statistics.js"></script>
<script src="Game.js"></script>
<script src="Draw.js"></script>
<script src="Result.js"></script>
<script src="main.js"></script>
</body>
</html>