-
Notifications
You must be signed in to change notification settings - Fork 26
/
score.html
86 lines (78 loc) · 1.67 KB
/
score.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
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Score History</title>
<link rel="icon" href="assets/logo-kviz.jpg" />
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
background-color: #f0f0f0;
}
h1 {
text-align: center;
color: #333;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
background-color: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
th,
td {
border: 1px solid #ddd;
padding: 12px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
tbody tr:nth-child(even) {
background-color: #f9f9f9;
}
tbody tr:hover {
background-color: #e0e0e0;
}
</style>
</head>
<body>
<h1>Score History</h1>
<table>
<thead>
<tr>
<th>Date</th>
<th>Player</th>
<th>Score</th>
</tr>
</thead>
<tbody>
<tr>
<td>2024-01-25</td>
<td>Player 1</td>
<td>1500</td>
</tr>
<tr>
<td>2024-01-24</td>
<td>Player 2</td>
<td>1200</td>
</tr>
<tr>
<td>2024-01-23</td>
<td>Player 3</td>
<td>1800</td>
</tr>
<tr>
<td>2024-01-22</td>
<td>Player 4</td>
<td>1350</td>
</tr>
<!-- Add more rows as needed -->
</tbody>
</table>
<script src="music.js"></script>
</body>
</html>