mirror of
https://github.com/MrEidam/Black-Jack.git
synced 2025-12-29 17:06:11 +00:00
26 lines
712 B
HTML
26 lines
712 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<!-- Links -->
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
<title>BlackJack</title>
|
|
</head>
|
|
<body>
|
|
<h2 id="dealerScore">???</h2>
|
|
<article class="cards cards1"></article>
|
|
<h2 id="playerScore">0</h2>
|
|
<article id="playerHand" class="cards cards2"></article>
|
|
<section id="buttons">
|
|
<button onclick="hit()">Hit</button>
|
|
<button onclick="stand()">Stand</button>
|
|
</section>
|
|
<section id="reset">
|
|
<button id="resetBTN" onclick="reset()">Reset</button>
|
|
</section>
|
|
<script src="main.js"></script>
|
|
</body>
|
|
</html> |