-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (60 loc) · 2.74 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/bootstrap.css">
<link rel="stylesheet" href="./css/fontawesome.css">
<title>Document</title>
</head>
<body class="bg-info">
<section class="container bg-light mt-5">
<div class="row">
<div class="col-12">
<h4 class="text-center " id="new"> + NEW GAME</h4>
</div>
<div class="col-12 mt-5">
<div class="row container ">
<div class="col-4 active d ">
<h1 class="text-uppercase text-center" id="name-0">player 1</h1>
<p class="display-3 h text-center text-danger" id="score-0">0</p>
</div>
<div class="col-4 ">
<div class="row justify-content-center">
<img src="dice1.png" class="w-50" id="dom">
<img src="dice1.png" class="w-50" id="dom1">
</div>
</div>
<div class="col-4 player-2">
<h1 class="text-uppercase text-center " id="name-1">player 2</h1>
<p class="display-3 text-center text-danger" id="score-1">0</p>
</div>
</div>
</div>
<div class="col-12 mt-5 mb-5 ">
<div class="row container">
<div class="col-4 bg-danger">
<p class="text-center">current</p>
<h5 class="text-center text-light" id="current-0">0</h5>
</div>
<div class="col-4">
<button class="btn btn-outline-info w-100" id="roll">ROLL DICE</button>
<button class="btn btn-warning mt-3 w-100" id="hold" >HOLD</button>
</div>
<div class="col-4 bg-danger">
<p class="text-center">current</p>
<h5 class="text-center text-light" id="current-1" >0</h5>
</div>
</div>
</div>
<div class="col-12 mb-5 ">
<div class="row justify-content-center align-items-center">
<input placeholder="input winning score" id="input" class="w-50 btn btn-outline-danger">
</div>
</div>
</div>
</section>
<script src="./gases.js"></script>
</body>
</html>