forked from langfalvidavid/Blackjack-game-hobby-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (43 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blackjack</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<div>
<h1>Blackjack game</h1>
</div>
<div class="display">
<div class="sumBal">
<p id="sum">Sum: 0</p>
<p id="balance">Balance: $1000</p>
<p id="bet">Bet: 0</p>
</div>
<div id="msgHeight">
<p id="message">Draw a card to start the game! 😀</p>
</div>
<div id="cards"></div>
</div>
<div class="buttons-bet">
<div class="buttons">
<button id="new-card-btn">NEW CARD</button>
<button id="stop-btn">STOP</button>
<button id="restart-game-btn">RESTART GAME</button>
<button id="refill-balance-btn">REFILL BALANCE</button>
</div>
<div class="bet">
<button id="bet-all-in">ALL IN</button>
<button id="bet-50">+50</button>
<button id="bet-100">+100</button>
<button id="bet-200">+200</button>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>