-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
53 lines (41 loc) · 1.83 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="author" content="Jérôme Janik Haas">
<title>Black Jack Game</title>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style/main.css">
<link href="https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@200;400;600&display=swap" rel="stylesheet">
<link rel="icon" href="favicon.ico">
</head>
<body>
<div class="container-game">
<div id="element-bankroll">
<figure class="coin" id="coin-10" value="10"></figure>
<figure class="coin" id="coin-20" value="20"></figure>
<figure class="coin" id="coin-50" value="50"></figure>
<figure class="coin" id="coin-100" value="100"></figure>
<figure class="coin" id="coin-500" value="500"></figure>
</div>
<div id="element-player-card-deck"></div>
<div id="element-bot-card-deck"> </div>
<div id="element-player-total-points"></div>
<div id="element-bot-total-points"></div>
<div id="element-total-bankroll"></div>
<div id="element-pot">0</div>
<div id="deal-button">DEAL</div>
<div id="hit-button">HIT</div>
<div id="stand-button">STAND</div>
<div id="message"></div>
<div id="menu">
YOU ARE OUT OF CHIPS.. <br> <br>
DO YOU WANT TO PLAY ANOTHER ROUND? <br> <br>
<button id="play-again">PLAY AGAIN</button>
</div>
</div>
<script src="functions/app.js"></script>
</body>
</html>