-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (30 loc) 路 892 Bytes
/
Copy pathindex.html
File metadata and controls
38 lines (30 loc) 路 892 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Blackjack Game</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>Blackjack</h1>
<div id="table">
<div class="hand-container">
<h2>Dealer</h2>
<div id="dealer-cards" class="cards"></div>
<div id="dealer-total" class="total"></div>
</div>
<div class="hand-container">
<h2>Player (you)</h2>
<div id="player-cards" class="cards"></div>
<div id="player-total" class="total"></div>
</div>
</div>
<div id="controls">
<button id="new-game-btn">New Game</button>
<button id="hit-btn" disabled>Hit</button>
<button id="stand-btn" disabled>Stand</button>
</div>
<div id="status"></div>
<script src="script.js"></script>
</body>
</html>