-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (32 loc) · 1.04 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 content='width=device-width,initial-scale=1.0,user-scalable=no' name='viewport'>
<link href="styles/blackjack.css" rel="stylesheet"></link>
</head>
<body>
<header>
<h1>BlackJack</h1>
</header>
<div class="table">
<div class="deck">
<div>Deck</div>
<div class="card">
<p id="deckcount">52</p>
</div>
</div>
<div id="house"></div>
<div id="players"></div>
<div id="status">
<div id="status-content">
<p id="status-text"></p>
<button id="status-btn" onclick="blackjack.init()">New Game</button>
</div>
</div>
</div>
<script src="scripts/deck.js"></script>
<script src="scripts/players.js"></script>
<script src="scripts/blackjack.js"></script>
</body>
</html>