-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.27 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
<html>
<head><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1>Blackjack</h1>
<p id="message-el">Fancy a game?</p>
<p id="rules1-el">$20 wager</p>
<p id="rules2-el">Blackjack pays 3 to 2</p>
<p id="rules3-el">Dealer must stand on 17 and must draw to 16</p>
<table class="cards">
<tr>
<th id="dealerHeader-el"></th>
<th style="width:50px"></th>
<th id="playerHeader-el"></th>
</tr>
<tr>
<td>
<p id="dealerCards-el"></p>
<p id="dealerTotal-el"></p>
</td>
<td></td>
<td>
<p id="playerCards-el"></p>
<p id="playerTotal-el"></p>
</td>
</tr>
</table>
<button onclick="playerNewCard()">HIT</button>
<button onclick="endGame()">STAND</button>
<p id="playerCash-el"></p>
<button onclick="startGame()">NEW GAME</button>
<div class="version"><p id="version-el"></p></div>
<script src="index.js"></script>
</body>
</html>