-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (41 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Black Jack</title>
<link rel="stylesheet" href="./styles/cards/cards.css" />
<link rel="stylesheet" href="./styles/cards/cards-ie.css" />
<link rel="stylesheet" href="./styles/cards/cards-ie9.css" />
<link rel="stylesheet" href="./styles/animate.css" />
<link rel="stylesheet" href="./styles/styles.css" />
</head>
<body>
<div class="outside-container">
<div class="playingCards faceImages">
<div class="container">
<div id="dealer" class="center"></div>
<h3 id="dealer-score" class="center"></h3>
<h3 id="player-score" class="center"></h3>
<div id="player" class="center"></div>
<div class="center buttons">
<div id="game-buttons" class="hidden animated">
<a href="#" id="hit" class="hit">Hit!</a>
<a href="#" id="stay" class="stay">Stay</a>
</div>
<div class="animated" id="play-btn">
<a href="#" class="play">Play BlackJack!</a>
</div>
</div>
<h2 id="game-over" class="center"></h2>
</div>
</div>
</div>
<script src="./scripts/cardDecks.js"></script>
<script src="./scripts/globalVars.js"></script>
<script src="./scripts/gameFuncs.js"></script>
<script src="./scripts/dom.js"></script>
</body>
</html>