-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (33 loc) · 929 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Blackjack</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/deck.js"></script>
<script src="js/hand.js"></script>
<script src="js/dealer.js"></script>
<script src="js/game.js"></script>
<script src="js/game_constructor.js"></script>
<script src="js/application.js"></script>
<link rel="stylesheet" href="application.css">
</head>
<body>
<table border="1px" width="100%">
<td id ="player_cell">
<p id="player_data"></p>
<p id="player_score"></p>
<p id="advice"> </p>
<button id="hit" type="button">Hit</button>
<button id="stay" type="button">Stay</button>
</td>
<td id="dealer_cell">
<div id="dealer_data">
</div>
<p class="next" id="dealer_score"></p>
<div id="dealer_button" >
<button class="next" id="next" type="button" display="none">next</button>
</div>
</td>
</table>
</body>
</html>