-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
51 lines (44 loc) · 1.71 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
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- Abril Fatface -->
<link href="https://fonts.googleapis.com/css?family=Abril+Fatface" rel="stylesheet">
<!-- Lato -->
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,400" rel="stylesheet">
<!-- style.css -->
<link rel="stylesheet" type="text/css" href="style.css">
<!-- font-awesome.min.css -->
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- favicon -->
<link rel="icon" href="favicons/favicon.ico">
<title>Pig Game</title>
</head>
<body>
<div class="container">
<div class="player-0-field active">
<div class="player-name" id="name-0">Player 1</div>
<div class="player-score" id="score-0">0</div>
<div class="player-current-box">
<div class="player-current-label">Current</div>
<div class="player-current-score" id="current-0">0</div>
</div>
</div>
<div class="player-1-field">
<div class="player-name" id="name-1">Player 2</div>
<div class="player-score" id="score-1">0</div>
<div class="player-current-box">
<div class="player-current-label">Current</div>
<div class="player-current-score" id="current-1">0</div>
</div>
</div>
<button class="btn-new-game"><i class="fa fa-plus-square-o" aria-hidden="true"></i> New Game</button>
<button class="btn-roll"><i class="fa fa-repeat" aria-hidden="true"></i> Roll Dice</button>
<button class="btn-hold"><i class="fa fa-download" aria-hidden="true"></i> Hold</button>
<input type="number" placeholder="Final Score" class="final-score">
<img src="dice-6.png" alt="Dice Image" class="dice">
</div>
<!-- app.js -->
<script src="app.js"></script>
</body>
</html>