-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (23 loc) · 867 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
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="blackjack-img"></div>
<div class="bckd-bj">
<div class="contrast">
<p id="message-el">Want to play a round?</p>
<p id="card-el">Cards:</p>
<p id="sum-el">Sum:</p>
<p id="message"></p>
</div>
<div class="btn">
<button class="btn-game" id="start-game" onClick="startGame()">START GAME</button>
<button class="btn-game" id="reset-game" onClick="addOne()">+1 CARD</button>
<button class="btn-game" id="reset" onClick="reset()">RESET</button>
</div>
<script src="index.js"></script>
</div>
</body>
</html>