-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 896 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Black Jack Game | by A. Priadko</title>
<link rel="stylesheet" type="text/css" media="screen" href="./source/css/style.css">
<script src="https://code.jquery.com/jquery-1.x-git.min.js"></script>
</head>
<body>
<div class="human board">
<div class="controls">
<a class="click btn btn-green">More</a>
<a class="restart btn btn-grey">Restart</a>
<a class="stop btn btn-red">Stop</a>
</div>
<div class="status">
Player: <span class="score">0</span>
</div>
</div>
<div class="message hide">
<p>You Won!</p>
</div>
<div class="computer board">
<div class="status">
Dealer: <span class="score">0</span>
</div>
</div>
<script src="./source/scripts/app.js"></script>
</body>
</html>