-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstats.html
41 lines (40 loc) · 1.08 KB
/
stats.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
<!-- Grupo: 23 -->
<!-- Número: 60858 Nome: Diogo Piçarra PL:26-->
<!-- Número: 51758 Nome: José Lopes PL:26-->
<!-- Número: 61279 Nome: Vladana Giebler PL:26-->
<!DOCTYPE html>
<html lang="en-US">
<head>
<link rel="stylesheet" href="style/style.css">
<link rel="stylesheet" href="style/position.css">
<script src="scripts/scoreboard.js"></script>
<meta charset="utf-8">
<title>Stats</title>
</head>
<body>
<h1>Bejeweled</h1>
<h2 class="subtitulo">Stats</h2>
<h2 id="mododejogo"></h2>
<div class="statsTable">
<div id="botoesstats">
<button id="btnsinglenormal">Singleplayer</button>
<button id="btnmultinormal">Multiplayer</button>
<button id="btnsingleinfinito">Single Infinito</button>
<button id="btnmultiinfinito">Multiplayer Infinito</button>
</div>
<table id="scoreboardtable">
<thead>
<tr>
<th>Player</th>
<th>Highscore</th>
<th>Time</th>
</tr>
</thead>
<tbody id="scoreboard">
</tbody>
</table>
<footer>
<p class="homebutton"><a href="index.html">Back to Home</a></p>
</footer>
</body>
</html>