14 lines
377 B
HTML
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>
|