-
Notifications
You must be signed in to change notification settings - Fork 903
/
Copy pathindex.html
45 lines (43 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pig Game</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="container">
<div id="left">
<h1 id="playerHeading">PLAYER 1</h1>
<p class="mainScore" id="mainScorePlayer1">0</p>
<div id="wrapper">
<div class="current">Current</div>
<div class="currentScore" id="currentScorePlayer1">0</div>
</div>
</div>
<div id="middleButtons">
<div id="newGame">
<img src="retry.png" alt="error" style="width: 30px" /> New Game
</div>
<img src="5.png" id="diceFaces" alt="error" style="width: 100px" />
<div id="rollDice">
<img src="dice2.png" alt="error" style="width: 36px" /> Roll dice
</div>
<div id="hold">
<img src="hold.png" alt="error" style="width: 35px" /> Hold
</div>
</div>
<div id="right">
<h1 id="playerHeading">PLAYER 2</h1>
<p class="mainScore" id="mainScorePlayer2">0</p>
<div id="wrapper">
<div class="current">Current</div>
<div class="currentScore" id="currentScorePlayer2">0</div>
</div>
</div>
</div>
</body>
<script src="jss.js" defer></script>
</html>