-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (43 loc) · 1.67 KB
/
index.html
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
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dice Game</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Coin Toss & Dice Game</h1>
<h2 id="tossWinnerDisplay"></h2>
<button id="tossBtn">Toss</button>
<p id="tossResult"></p>
<div id="diceContainer" style="display:none;">
<h2 id="turnInfo"></h2>
<div class="player-sections">
<div class="player-section">
<h3 id="player1NameDisplay">Player 1</h3>
<button id="rollDiceBtnPlayer1">Roll Dice (<span id="player1NameButton">Player 1</span>)</button>
<div class="dice-result">
<p>Dice 1: <span id="player1Dice1">-</span></p>
<p>Dice 2: <span id="player1Dice2">-</span></p>
</div>
</div>
<div class="player-section">
<h3 id="player2NameDisplay">Player 2</h3>
<button id="rollDiceBtnPlayer2">Roll Dice (<span id="player2NameButton">Player 2</span>)</button>
<div class="dice-result">
<p>Dice 1: <span id="player2Dice1">-</span></p>
<p>Dice 2: <span id="player2Dice2">-</span></p>
</div>
</div>
</div>
<p id="gameStatus"></p>
</div>
</div>
<footer>
<p>© 2024 Bilal Waleed. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>