Initial Commit

This commit is contained in:
2025-09-30 03:21:40 +10:00
commit ac6b0d7187
4 changed files with 146 additions and 0 deletions

14
index.html Normal file
View File

@@ -0,0 +1,14 @@
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1>Blackjack</h1>
<button onclick="sendData('hit')">Hit</button>
<button onclick="sendData('stand')">Stand</button>
<button onclick="sendData('reset')">Reset</button>
<p id="response"></p>
</body>
<script src="index.js"></script>
</html>