-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (45 loc) · 1.81 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
<!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" />
<meta http-equiv="X-UA-Comatible" content="ie=edge" />
<link rel="stylesheet" href="css/all.min.css">
<link rel="stylesheet" href="css/style.css" />
<title>Pig Game</title>
</head>
<body>
<main>
<section class="player player--0 player--active">
<h2 class="name" id="name--0">Player1</h2>
<p class="score" id="score--0">43</p>
<div class="current">
<p class="current-label">Current</p>
<p class="current-score" id="current--0">0</p>
</div>
</section>
<section class="player player--1">
<h2 class="name" id="name--1">Player2</h2>
<p class="score" id="score--1">24</p>
<div class="current">
<p class="current-label">Current</p>
<p class="current-score" id="current--1">0</p>
</div>
</section>
<!--start section images-->
<img src="dice-1.png" class="dice zbady">
<img src="dice-2.png" class="dice zbady">
<img src="dice-3.png" class="dice zbady">
<img src="dice-4.png" class="dice zbady">
<img src="dice-5.png" class="dice zbady">
<img src="dice-6.png" class="dice zbady">
<!--end section images-->
<button class="btn btn--new"><i class="fas fa-sync-alt"></i>New game</button>
<button class="btn btn--roll"><img src="blue dice.png" alt="playing roll" class="bluedice"></i>Roll
dice</button>
<button class="btn btn--hold"><i class="fab fa-react"></i>Hold</button>
</main>
<script src="script.js"></script>
</body>
</html>