-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatistiques.html
More file actions
62 lines (57 loc) · 1.27 KB
/
Copy pathstatistiques.html
File metadata and controls
62 lines (57 loc) · 1.27 KB
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>statistiques</title>
<style>
h1,h2,a{
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
h2{text-align: center;}
#tabstatistique {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 100%;
}
#tabstatistique td, #tabstatistique th {
border: 1px solid #ddd;
padding: 8px;
text-align: center !important;
}
#tabstatistique tr:nth-child(even){background-color: #f2f2f2;}
#tabstatistique tr:hover {background-color: #ddd;}
#tabstatistique th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #4c78af;
color: white;
}
h1,a{text-align: center;}
#btn {
background-color: #4c78af;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 5px;
margin-bottom: 40px;
}
div#btnDiv {
margin: auto;
width: 205px;
}
</style>
</head>
<body>
<h1>Statistiques</h1>
<div id="btnDiv"><a id="btn" href="./index.html"><< Revenir au jeux</a></div>
<section id="result"></section>
</body>
<script src="./js/statistiques.js"></script>
</html>