-
Notifications
You must be signed in to change notification settings - Fork 0
/
blackjack.html
64 lines (59 loc) · 1.62 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!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">
<title>Document</title>
<style>
body{
width: 80%;
margin: auto;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.blackjack-container{
text-align: center;
width: 50%;
margin: 30px auto;
height: 300px;
padding: 10px;
background-color: #016f32;
color: white;
}
h1{
color: goldenrod;
}
p{
font-weight: bold;
}
p#message-el{
font-style: italic;
font-weight: bold;
}
button{
color:#016f32 ;
background-color: goldenrod;
width: 150px;
border: none;
font-weight: 700;
font-size: 1rem;
padding: 5px 0px;
border-radius: 2px;
margin-bottom: 4px;
}
</style>
</head>
<body>
<div class="blackjack-container">
<h1>Blackjack</h1>
<p id="message-el">Want to play a round?</p>
<p id="cards-el">Cards:</p>
<p id="sum-el">Sum:</p>
<button onclick="startGame()">START GAME</button><br>
<button onclick="newCard()">NEW CARD</button>
<p id="player-el"></p>
<p id="chip-el"></p>
</div>
<script src="blackjack.js"></script>
</body>
</html>