-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (25 loc) · 1023 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
25
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styling.css">
</head>
<body>
<div class="wrapper">
<div class="container">
<h1 style="font-size: 4rem;margin-top: -2rem;" id="blackjack-header">Blackjack</h1>
<div id="house-el"></div>
<p id="message-el">Want to play a round?</p>
<div id="cards-el"></div>
<p id="another-round" style="display:none;">Would you like to play another round?</p>
<button id="start-btn" onclick="startGame()">START GAME</button>
<button id="newcard-btn" style="display:none;" onclick="hit()">HIT</button>
<button id="stay-btn" style="display:none;" onclick="gameOn()">STAY</button>
</div>
<div class="gamedescrip">
<h1>Enrico's Blackjack game</h1>
<p>Created in 2023.</p>
</div>
</div>
<script src="game.js" ></script>
</body>
</html>