-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (57 loc) · 2.37 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
<!DOCTYPE html>
<html>
<head> <!-- Joe better like this indentation -->
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<!-- <script type="text/javascript" src="http://dev.jtsage.com/cdn/spinbox/latest/jqm-spinbox.min.js"></script> -->
<script type="text/javascript" src="app.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css">
<link href='https://fonts.googleapis.com/css?family=Fontdiner+Swanky' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Oregano' rel='stylesheet' type='text/css'>
<title>Black Jack!</title>
</head>
<body>
<div id="rcorners1">
<div class="playerContainer">
<div>Your card:</div>
<div id="pCard1">Hit.</div>
<div id="stayCard">Stay.</div>
<!-- <div>Click to deal a card.</div> -->
<div class="dealerContainer"></div>
<div>Dealer's card:</div>
<div id="dCard1">Send the dealer a card.</div>
<!-- <div>Dealer's card.</div> -->
<!-- <div id="counterBlock"> -->
<div id="yourScore"><p>Your score:</p></div>
<div id="counter"><p></p></div>
<div id="spade"> </div>
<!-- </div> -->
<div id="dealersScore"><p>Dealer's score:</p></div>
<div id="dealerCounter"><p></p></div>
<div id="betCounter"><p></p></div>
<div id="chipCounterID">
<p id="game-dialogue">You've got 100 chips to start with. How many would you like to bet?</p>
<div id="chipCounter">
<input type="text" id="sum1">
<input type="button" id="submit" value="Submit">
<!-- <div id="plusFive"></div>+5 chips </div> <div id="minusFive">-5 chips</div>
</div>
<!-- <form id="betForm" method="post">
<input type="text" id="sum1">
<input id="bet-submit" type="submit" value="Submit">
<!-- <input type="button" id="submit" value="Submit">
</form> -->
<!-- <div id="display" style="height: 50px; width: 100%;"></div> -->
<!-- <form id='myform' method='POST' action='#'>
<input type='button' value='-' class='qtyminus' field='quantity' />
<input type='text' name='quantity' value='0' class='qty' />
<input type='button' value='+' class='qtyplus' field='quantity' />
</form> -->
<!-- <div class="ui-field-contain">
<label for="spin">Input spinner</label>
<input type="text" data-role="spinbox" name="spin" id="spin" value="60" min="0" max="100" / -->
</div>
</div>
</div>
<h1>Black * jack!</h1>
</body>
</html>