Files
blackjack/index.html
2025-09-30 03:21:40 +10:00

14 lines
377 B
HTML

<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>