-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (55 loc) · 1.72 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en" ng-app="app" ng-cloak>
<head>
<meta charset="UTF-8" />
<title></title>
</head>
<link rel="stylesheet" href="./src/styles/app.css" />
<body>
<header>
<h1>BLACKJACK LIVE</h1>
</header>
<div class="casino">
<div class="game">
<div class="table" id="dealer"></div>
<div class="table" id="player"></div>
</div>
<div class="grid-disp">
<label for="dealer">Dealer</label>
<label for="player">Player</label>
</div>
</div>
<div class="display">
<div id="balance_display">
<label for="player money">Your Balance =></label>
<span id="balance" value="100000" />100000
</div>
<div>
<label>Your Bet => </label>
<span id="bet-value" />0
</div>
</div>
<div class="button-container">
<div class="table" id="money">
<button class="chip" id="chip-1" value="100">100</button>
<button class="chip" id="chip-2" value="500">500</button>
<button class="chip" id="chip-2" value="1000">1K</button>
<button class="chip" id="chip-3" value="5000">5K</button>
<button class="chip" id="chip-4" value="10000">10K</button>
<button class="chip" id="chip-5" value="50000">50K</button>
</div>
<div class="table">
<button id="reset">RESET</button>
<button class="bet">BET</button>
</div>
</div>
<div class="hit-stand-button" id="hit-stand">
<button class="hit">HIT</button>
<button class="stand">STAND</button>
</div>
<div class="next" id="hid next-btn-container">
<button id="next-game">Next</button>
</div>
</body>
<script src="./src/script.js"></script>
</html>