-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (40 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="image/x-icon" href="Dice_Icon.ico">
<title>Feeling Lucky</title>
</head>
<body>
<main>
<section class="player player--0 player--active">
<h2 class="name" id="name--0">Player 1</h2>
<p class="score" id="score--0">0</p>
<div class="current btn_Score_1">
<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">Player 2</h2>
<p class="score" id="score--1">0</p>
<div class="current btn_Score_2">
<p class="current-label">Current</p>
<p class="current-score" id="current--1">0</p>
</div>
</section>
<!--<img src="dice-5.png" alt="Playing dice" class="dice btn_Score" />-->
<input type="image" src="dice-5.png" alt="Playing dice" class="dice btn_Score" >
<button class="btn btn--new">🔄 New game</button>
<span class="Span_gif">
<button class="btn btn--roll"><img class="img_gif" src="dice-roll-dice.gif"> Roll dice</button>
</span>
<button class="btn btn--hold">📥 Hold</button>
<button class="btn btn--mute">🔊 UNMUTE</button>
</main>
<script src="script.js"></script>
</body>
</html>