-
Notifications
You must be signed in to change notification settings - Fork 0
/
blackjack.html
48 lines (40 loc) · 1.42 KB
/
blackjack.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
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>Head First Black Jack</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<link href="styles/blackjack.css" rel="stylesheet">
<script src="js/jquery-1.6.2.min.js"></script>
<script src="js/blackjack.js"></script>
</head>
<body>
<div id="main">
<h1>Click to reveal your cards</h1>
<h3 id="hdrTotal"></h3>
<h3 id="hdrResult"></h3>
<div id="my_hand">
</div>
<div id="controls">
<div id="btnDeal">
<img src="ch06/end/images/deck_small.jpg">
</div>
<div id="btnHit">
<img src="ch06/end/images/deck_small.jpg">
</div>
<div id="btnStick">
<img src="ch06/end/images/stick_small.jpg">
</div>
<div id='btnRestart'>
<img src='ch06/end/images/restart_small.jpg'>
</div>
<div id="result"><img src="" id="imgResult"></div>
</div>
</div>
</body>
</html>