-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (39 loc) · 1.44 KB
/
index.html
File metadata and controls
44 lines (39 loc) · 1.44 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Poker Tracker</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container-options">
<div id="add-remove-player-container">
<button id="add-button" onclick="addPlayer()">Add Player</button>
<button id="remove-button" class="foldButton" onclick="removePlayer()">Remove Player</button>
<button id="start-button" class="startButton" onclick="blinds()">Start Hand</button>
</div>
</div>
<div class="container">
<h1>Chips</h1>
<!-- Player's Stack Sizes -->
<div class="player-stack" id="player-container">
<h2>Player Stack Sizes</h2>
<div class="player" id="player1">
<div class="buttcont" id="dealer-container1" ></div>
<input type="text" id="l1" value="Name">
<label id="stack1">1000</label>
<div class="buttcont" id="button-container1"></div>
</div>
</div>
<!-- Pot Tracker -->
<div class="pot">
<h2>Pot: $<span id="pot">0</span></h2>
</div>
<div id="pay-container">
<button id="pay1" class="payButton" onclick="pay(1)">1</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>