-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
55 lines (50 loc) · 1.86 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
<!DOCTYPE html>
<html>
<head>
<title>BlackJack's Game</title>
<link rel="stylesheet" type="text/css" href="reset.css">
<link rel="stylesheet" type="text/css" href="style.css">
<!--<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Yanone+Kaffeesatx:700">-->
<link href="https://fonts.googleapis.com/css?family=Merriweather:700" rel="stylesheet">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js" defer></script>
<script type="text/javascript" src="21game.js" defer></script>
</head>
<body>
<header>
<p class="title">PRESS START TO PLAY BLACKJACK!!</p>
<div class="console">
<a href="javascript:void(0);" id="start">Start!</a>
<a href="javascript:void(0);" id="reset">Reset!</a>
</div>
</header>
<div class="centered">
<div class="results">
<div class="dealer">
<h1>Dealer's Hand:</h1>
<!--inline style to keep Player's Hand in the middle of the table-->
<div class="dealers_cards" style="height:96px">
<ul>
</ul>
</div>
<div class="score"></div>
</div>
<div class="player">
<h1>Player's Hand:</h1>
<div class="players_cards">
<ul>
</ul>
</div>
<!--<div class="score"></div>-->
</div>
</div>
</div>
<div class="pscore"></div>
<div class="gameConsole" style="visibility: hidden;">
<a href="javascript:void(0);" id="hit">Hit!</a>
<a href="javascript:void(0);" id="stand">Stand</a>
</div>
<footer>
<p>BlackJack Game written in JavaScript. Still in development...</p>
</footer>
</body>
</html>