-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (35 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta name="viewport" content="width= , initial-scale=1.0" />
<title>Dice</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Orbitron&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<h1 class="result">Roll the dices!</h1>
<div class="dice">
<p class="player">Player 1</p>
<img class="img1" src="./images/dice6.png">
</div>
<div class="dice">
<p class="player">Player 2</p>
<img class="img2" src="./images/dice6.png">
</div>
</div>
<div class="scorecontainer">
<p class="player">Player 1</p>
<p class="player" id="result"> <span id="player1score">0</span>-<span id="player2score">0</span></p>
<p class="player">Player 2</p>
</div>
<div class="btncontainer">
<button onclick="rollDice()" class="button">Roll!</button>
<button onclick="reset()" class="button">Reset</button>
</div>
<script src="./script.js"></script>
</body>
<footer>
<a href="https://github.com/AmarPivcic">www🎲github🎲com🎲AmarPivcic</a>
</footer>
</html>