-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb.html
38 lines (35 loc) · 1.49 KB
/
web.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
<!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 type="text/css" rel="stylesheet" href="try.css">
</head>
<body>
<div class="wrapper clearfix">
<div class="player0Panel active">
<div class="playerName" id="name0">PLAYER 1</div>
<div class="playerScore" id="score0"><font color="white">0</font></div>
<div class="playerCurrent" id="current0">
<div class="currentText">Current</div>
<div class="playerCurrentScore" id="currentScore0">0</div>
</div>
</div>
<div class="player1Panel">
<div class="playerName" id="name1">PLAYER 2</div>
<div class="playerScore" id="score1"><font color="white">0</font></div>
<div class="playerCurrent" id="current1">
<div class="currentText">Current</div>
<div class="playerCurrentScore" id="currentScore1">0</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>
<button class="btn-hold"><i class="ion-ios-download-outline"></i>Hold</button>
<input type="text" placeholder="Final score" class="final-score">
<img src="dice-5.png" alt="Dice" class="dice">
</div>
<script type="text/javascript" src="try.js"></script>
</body>
</html>