-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (23 loc) · 741 Bytes
/
index.html
File metadata and controls
28 lines (23 loc) · 741 Bytes
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
26
27
28
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 id="title">Welcome to BlackJack!</h1>
<p id="dealer">Text in my paragraph! </p>
<p id="dealerCardsZone"></p>
<p id="dealerValue"></p>
<p id="player"> MY other paragraph!</p>
<p id="playerCardsZone"></p>
<p id="playerValue"> </p>
<p id="status"></p>
<button id="split">Split! </button>
<button id="stand">Stand!</button> <button id="hitButton">Hit!</button>
<button id="newGame">Deal!</button>
<button id="bet">Bet 50</button>
<p id="playerPocket">You have: 1000 chips</p>
<p id="currentBet">Your current bet is: </p>
<script src="script.js"></script>
</body>
</html>