-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (79 loc) · 3.09 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>BlackJack</title>
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<div class="table">
<!-- <a href="blackjack_practice.html">Practice Page</a> -->
<!-- <div class="rules">Blackjack pays 3 to 2 <br> Dealer must stand on 17 and draw to 16 <br> Insurance pays 2 to 1</div> -->
<div class="scoretracker">
<!-- <ul>
<li>penetration card</li>
<li>wins</li>
<li>busts</li>
<li>blackjacks</li>
<li>running count</li>
<li>true count</li>
<li>suggested move</li>
</ul> -->
<div id="runningCount">
<p>Running Count</p>
<p >0</p>
<button type="button">Show</button>
</div>
<div>
<p>Cards out</p>
<p >0</p>
<button type="button" id="cardsOut">Show</button>
</div>
<div>
<p>True count</p>
<p >0</p>
<button type="button" id="trueCount">Show</button>
</div>
</div>
<div class="dealercards">
<div class="deck"></div>
</div>
<div class="bet">Player Bet: <p id="moneyBet">000</p>
<input type="button" value="Deal" id="dealButton">
<input type="reset" value="Reset" id="resetButton">
<ul>
<li id="oneEuro"></li>
<li id="fiveEuro"></li>
<li id="tenEuro"></li>
<li id="hundredEuro"></li>
</ul>
</div>
<div class="message">Message Board</div>
<select id="size" onchange="getSelectedValue();">
<option value="6">Six</option>
<option value="aces">Aces</option>
<option value="1">One</option>
</select>
<input type="button" value="Shuffle" id="applyNumberOfDecks">
<!-- <input type="button" value="Render" id="renderButton">
<input type="button" value="Create Space" id="createSpaceButton">
<input type="button" value="Change Size" id="changeSizeButton">
<input type="button" value="Create New Hand" id="createNewHandButton"> -->
<div class="playercards" id="playerField">
<div class="playerhand" id="playerHand1">
</div>
</div>
<div class="buttons">
<ul>
<li><input type="button" value="Double*2" id="doubleButton"></li>
<li><input type="button" value="Hit" id="hitButton"></li>
<li><input type="button" value="Stand" id="standButton"></li>
<li><input type="button" value="Test" id="testButton"></li>
</ul>
<input type="button" value="Split" id="splitButton" disabled="disabled">
</div>
<div class="playerbank">Player Bank: <p id="bank"></p></div>
</div>
</body>
<script src="scripts/script.js"></script>
</html>