-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (24 loc) · 949 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="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1>Blackjack</h1>
<input class='name' type="text" id="name-input" placeholder="Enter your name">
<button class="action-btn" onclick="setName()">Set Name</button>
<p id="message-el">Place your bet and start the game!</p>
<p id="cards-el">Cards:</p>
<p id="sum-el">Sum:</p>
<p id="bet-el">Bet:</p>
<div class="button-container">
<button class="action-btn" onclick="startGame()">START GAME</button>
<button class="action-btn" onclick="newCard()">NEW CARD</button>
<button class="action-btn" onclick="placeBet()">BET 10$ (x5)</button>
<button class="action-btn" onclick="restartGame()">RESTART</button>
</div>
<p id="player-el"></p>
<script src="index.js"></script>
</body>
</html>