-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathranking.html
52 lines (49 loc) · 2.14 KB
/
ranking.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
<!DOCTYPE html>
<html lang="pt">
<!-- ====================================================================== -->
<!-- ITW 2021/2022 Grupo 66 -->
<!-- Filipe Dávila Fernandes, Nº 55981, PL26 -->
<!-- Rita Rodrigues, Nº 54859, PL26 -->
<!-- ====================================================================== -->
<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">
<link rel="stylesheet" href="estilos/main.css" type="text/css">
<link rel="stylesheet" href="estilos/layout.css" type="text/css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Tangerine">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="js/main.js"></script>
<script src="js/ranking.js"></script>
<title>Minesweeper - Ranking</title>
</head>
<body>
<nav class="navigation">
<ul>
<li ><a href="index.html">Minesweeper</a></li>
<li><a href="quickGame.html">Jogar</a></li>
<li><a href="tutorial.html">Tutorial</a></li>
<li class="active"><a href="ranking.html">Ranking</a></li>
<li><a href="sobrenos.html">Sobre Nós</a></li>
<li class="right"><div class="user"><a id="username"></a><span class="profile"></span></div></li>
</ul>
</nav>
<article>
<select name="opcaoEstatistica" id="selEstatistica">
<option selected>Selecione Estatística</option>
<option>Number Of Games</option>
<option>Total Time</option>
<option>My Best Times </option>
<option>TOP10 SinglePlayer</option>
<option>TOP10 Multiplayer</option>
</select>
<article>
<div id="titleBox"></div>
<div id="rankingBox" class="ranking" ></div>
</article>
</article>
<footer>
<p> © Filipe, Rita</p>
</footer>
</body>
</html>