forked from ChromeGaming/GameSphere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (22 loc) · 771 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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Black Jack</title>
<link rel="stylesheet" href="blackjack.css">
<script src="blackjack.js"></script>
</head>
<body>
<h2>Dealer: <span id="dealer-sum"></span></h2>
<div id="dealer-cards">
<img id="hidden" src="https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/1390719b-6639-4e23-b8dd-99c5464d07c7">
</div>
<h2>You: <span id="your-sum"></span></h2>
<div id="your-cards"></div>
<br>
<button id="hit">Hit</button>
<button id="stay">Stay</button>
<p id="results"></p>
</body>
</html>