-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (48 loc) · 1.32 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
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pig Game</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="body">
<div class="main">
<div class="player1 player active ">
<h1><input type="text" value="PLAYER 1"></h1>
<h1 id="winner-1"></h1>
<h1 class="total-score total-1">0</h1>
<div class="current-score">
<p>CURRENT</p>
<p class="score score-1">0</p>
</div>
</div>
<div class="new-game btn">
<p>🔁 NEW GAME</p>
</div>
<div class="roll-dice btn">
<p>🎲 ROLL DICE</p>
</div>
<div class="hold btn">
<p>📥 HOLD</p>
</div>
<div class="player2 player ">
<h1><input type="text" value="PLAYER 2"></h1>
<h1 id="winner-2"></h1>
<h1 class="total-score total-2">0</h1>
<div class="current-score">
<p>CURRENT</p>
<p class="score score-2">0</p>
</div>
</div>
</div>
<div class="dice"></div>
<footer>
<p>Made By <a href="https://github.com/akram-elgh">akram-elgh</a></p>
</footer>
</div>
<script src="index.js"></script>
</body>
</html>