-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtable.html
More file actions
88 lines (84 loc) · 1.87 KB
/
table.html
File metadata and controls
88 lines (84 loc) · 1.87 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<title>Statistics Table</title>
<link rel="shortcut icon" href="icons/default.png" type="image/x-icon">
<meta name="robots" content="noindex, noarchive, nosnippet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="statistics page of SimplyPrivate">
<link rel="stylesheet" href="css/styles-count.css">
<link rel="stylesheet" href="css/graph.css">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<style>
</style>
</head>
<body>
<h1>Download and View Statistics</h1>
<table>
<tr>
<th>Month</th>
<th>Downloads</th>
<th>Views</th>
</tr>
<tr>
<td>December 2023</td>
<td>18</td>
<td>69</td>
</tr>
<tr>
<td>January 2024</td>
<td>97</td>
<td>188</td>
</tr>
<tr>
<td>February 2024</td>
<td>355</td>
<td>838</td>
</tr>
<tr>
<td>March 2024</td>
<td>439</td>
<td>791</td>
</tr>
<tr>
<td>April 2024</td>
<td>1633</td>
<td>3085</td>
</tr>
<tr>
<td>May 2024</td>
<td>1203</td>
<td>5923</td>
</tr>
<tr>
<td>June 2024</td>
<td>2762</td>
<td>4406</td>
</tr>
<tr>
<td>July 2024</td>
<td>4238</td>
<td>9256</td>
</tr>
<tr>
<td>August 2024</td>
<td>7206</td>
<td>17801</td>
</tr>
<tr>
<td>September 2024</td>
<td>12797</td>
<td>23405</td>
</tr>
<tr>
<td>October 2024</td>
<td>9722</td>
<td>22366</td>
</tr>
</table>
<button class="gb gpush" onclick="location.href = 'graph.html'">Chart</button>
<button class="pb">Table</button>
<div class="bline"></div>
<div class="afline"></div>
</body>
</html>