-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplaying.html
64 lines (61 loc) · 2.3 KB
/
playing.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Playing - So Who's Counting</title>
<link rel="stylesheet" href="playing.css">
<link rel="icon" type="image/png" href="https://img.icons8.com/office/32/000000/roulette.png">
</head>
<body>
<main>
<div id="infoUser">
<h2>INFO USER</h2>
<div id="user"></div>
</div>
<div id="infoPC">
<h2>INFO PC</h2>
<div id="pc"></div>
</div>
<div id="infoResult">
<div id="resultVersus">
<div id="versusUser">
<h4>0</h4>
<h2>USER</h2>
</div>
<div id="versusPC">
<h4>0</h4>
<h2>PC</h2>
</div>
<div id="versusDraw">
<h4>0</h4>
<h2>DRAW</h2>
</div>
</div>
<div id="pnlGame">
<div id="pnlGameUser">
<h3 class="message">USER</h3>
<div id="pnlUserF">
<div><h4 class="result-estimado">4.5</h4><h2>X ESTIMATED</h2></div>
<div><h4 class="result-obtenido">0</h4><h2>X RESULT</h2></div>
<div><h4 class="result-min">0</h4><h2>MINIMUM</h2></div>
<div><h4 class="result-max">0</h4><h2>MAXIMUM</h2></div>
</div>
<div id="pnlGameUserPromedio"><h4>0</h4><h2>AVERAGE</h2></div>
</div>
<div id="pnlGamePC">
<h3 class="message">PC</h3>
<div id="pnlPCF">
<div><h4 class="result-estimado">4.5</h4><h2>X ESTIMATED</h2></div>
<div><h4 class="result-obtenido">0</h4><h2>X RESULT</h2></div>
<div><h4 class="result-min">0</h4><h2>MINIMUM</h2></div>
<div><h4 class="result-max">0</h4><h2>MAXIMUM</h2></div>
</div>
<div id="pnlGamePCPromedio"><h4>0</h4><h2>AVERAGE</h2></div>
</div>
</div>
</div>
</main>
</body>
<script src="playing.js"></script>
</html>