-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathidex.html
32 lines (30 loc) · 837 Bytes
/
idex.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
<!DOCTYPE html>
<html>
<head>
<title>Mauritania Game</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<div id="player-1">
<div id="name-1">Player-1 </div>
<div class="curently-1">
<div> curently</div>
<div id="score-1" >1</div>
</div>
</div>
<div id="player-2">
<div id="name-2"> Player-2</div>
<div class="curently-2">
<div>curently</div>
<div id="score-2">2</div>
</div>
</div>
<button class="btn-new"><i class="ion-ios-plus-outline"></i>New game</button>
<button class="btn-roll"><i class="ion-ios-loop"></i>Roll dice</button>
<img src="dice-1.png" alt="Dice" class="dice-1" width="150px" height="100px">
<img src="dice-1.png" alt="Dice" class="dice-2" width="150px" height="100px">
</div>
<script src="game.js"></script>
</body>
</html>