-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (69 loc) · 2.02 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!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
href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="main-box">
<div class="box-1-main bright">
<div class="box-0">
<p class="player-1">Player 1</p>
<p class="score-0">21</p>
<div class="current-box">
<p>CURRENT</p>
<p class="current-0-text">21</p>
</div>
</div>
<div class="box-1">
<p class="player-2">Player 2</p>
<p class="score-1">42</p>
<div class="current-box">
<p>CURRENT</p>
<p class="current-1-text">21</p>
</div>
</div>
</div>
<div class="box-2-main">
<div class="box-2">
<p class="player-3">Player 3</p>
<p class="score-2">35</p>
<div class="current-box">
<p>CURRENT</p>
<p class="current-2-text">21</p>
</div>
</div>
<div class="box-3">
<p class="player-4">Player 4</p>
<p class="score-3">40</p>
<div class="current-box">
<p>CURRENT</p>
<p class="current-3-text">21</p>
</div>
</div>
</div>
<div class="all-three-button">
<div class="image">
<img
src="dice-5.png"
alt="dice"
class="image-2"
width="100px"
height="100px"
/>
</div>
<a href="#"><div class="btn btn-new">🔄 NEW GAME</div></a>
<a href="#"><div class="btn btn-roll">🎲 ROLL DICE</div></a>
<a href="#"><div class="btn btn-dice">📥 HOLD</div></a>
</div>
</div>
<script src="script.js"></script>
</body>
</html>