-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgg.html
39 lines (35 loc) · 1.17 KB
/
gg.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
<!DOCTYPE html>
<html>
<head>
<title>Pig_Game</title>
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,600" rel="stylesheet" type="text/css">
<link href="http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="gdg.css">
</head>
<body>
<div class="boxes">
<div class="box1 active">
<button class="new1"><i class="ion-ios-plus-outline"></i> NEW GAME</button>
<h1 class="align1">PLAYER 1</h1>
<h1 class="globalscore-1">0</h1>
<img class="dice" src="dice-6.png">
<button class="new2"><i class="ion-ios-loop"></i> ROLL DICE</button>
<button class="new3"><i class="ion-ios-download-outline"></i> HOLD</button>
<div class="box3">
<div class="cc">CURRENT</div><br>
<div class="currentscore-1">0</div>
</div>
<input id="fr" type="number" placeholder="Set winning score">
</div>
<div class="box2">
<h1 class="align2">PLAYER 2</h1>
<h1 class="globalscore-2">0</h1>
<div class="box4">
<div class="cce">CURRENT</div><br>
<div class="currentscore-2">0</div>
</div>
</div>
</div>
<script src="application.js"></script>
</body>
</html>