-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (47 loc) · 1.61 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Roll the dice</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Nunito&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<section class="main">
<div class="players">
<div class="player-1 active-1" id="p-1">
<h2>PLAYER 1</h2>
<p class="high-score1">0</p>
<div class="score">
<p class="current1">CURRENT</p>
<p class="current-score1">0</p>
</div>
</div>
<div class="player-1 active-2" id="p-2">
<h2>PLAYER 2</h2>
<p class="high-score2">0</p>
<div class="score">
<p class="current2">CURRENT</p>
<p class="current-score2">0</p>
</div>
</div>
</div>
<div class="centre">
<button class="new-game">🔁 NEW GAME</button>
<img class="hidden" src="images/dice-1.png" />
<button class="roll-dice">🎲 ROLL DICE</button>
<button class="hold">⏱️ HOLD</button>
</div>
<p class="Made">Made with ❣️ by Bharat Pahwa</p>
</section>
<script src="script.js" async defer></script>
</body>
</html>