-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (34 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blackjack</title>
<link rel="stylesheet" href="styles.css" type="text/css">
</head>
<body>
<div class="message-box" id="messages"></div>
<div class="table">
<div class="player">
<label class="player-name">Dealer:
<span id="dealer-points" class="points"></span>
</label>
<div id="dealer-hand" class="hand">
</div>
</div>
<div class="player">
<label class="player-name">Player:
<span id="player-points" class="points"></span>
</label>
<div id="player-hand" class="hand">
</div>
</div>
<div class="buttons">
<button id="deal-button" type="button">Deal</button>
<button id="hit-button" type="button">Hit</button>
<button id="stand-button" type="button">Stand</button>
</div>
</div>
<script src=black-jack-script.js></script>
</body>
</html>