-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (46 loc) · 1.68 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
<!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">
<link rel="stylesheet" href="card-deck/css/cardstarter.css">
<link rel="stylesheet" href="blackjack.css">
<script defer src="blackjack.js"></script>
<title>Blackjack</title>
</head>
<body>
<div>
<h1 class="header">Carlos's Blackjack</h1>
</div>
<div class="container-grid">
<div class="game-content">
<h2 class="text" id='game-result'>PLACE BET AND CONFIRM TO START</h2>
<ul id="game-content-wager">
<li class="text" id="player-balance">Your Balance:</li>
<li class='text' id="player-bet">Your Bet:</li>
</ul>
</div>
<div class="cards">
<div id="dealer-cards">
<h2>Dealer Cards:</h2>
<p class='text'id="dealer-total">total: </p>
</div>
<div id="player-cards">
<h2>Your Cards:</h2>
<p id="player-total">total: </p>
</div>
</div>
<div id="bet-buttons">
<button class='buttons' id="place-bet">Place Bet</button>
<button class='buttons' id="withdraw-bet">Withdraw Bet</button>
<button class='buttons' id="confirm-bet">confirm Bet</button>
</div>
<div id="game-buttons">
<button class="buttons" id="hit-button">Hit</button>
<button class="buttons" id="new-game">New Game</button>
<button class="buttons" id="stand-button">Stand</button>
</div>
</div>
</body>
</html>