-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathestadisticas.html
More file actions
64 lines (53 loc) · 2.07 KB
/
estadisticas.html
File metadata and controls
64 lines (53 loc) · 2.07 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#ffffff">
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#000000">
<meta name="description" content="Accede a las estadísticas de oposiciones en Andalucía.">
<title>Estadísticas</title>
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon-16x16.png">
<link rel="stylesheet" href="css/base.css" />
<link rel="stylesheet" href="css/estadisticas.css" />
<script type="module" src="js/estadisticas.js"></script>
</head>
<body>
<header>
<a href="/index.html">
<h1>
<img src="img/favicon.png" alt="Icono" width="25" height="25">
Matemáticas de oposiciones
</h1>
</a>
<nav id="navegacion-global">
<ul>
<li><a href="/examenes.html">Exámenes</a></li>
<li><a href="/problemas.html">Problemas</a></li>
</ul>
</nav>
<a class="github" href="https://github.com/DanielSevillano/matematicas-oposiciones" title="GitHub"
target="_blank">
<img src="img/icono-github.svg" alt="GitHub" width="25" height="25">
</a>
</header>
<main>
<h2>📈 Estadísticas de oposiciones</h2>
<h3>Plazas ofertadas</h3>
<div class="contenedor-grafica">
<canvas id="grafica-plazas"></canvas>
</div>
<h3>Opositores</h3>
<div class="contenedor-grafica">
<canvas id="grafica-opositores"></canvas>
</div>
<h3>Ratios de obtención de plaza</h3>
<div class="contenedor-grafica">
<canvas id="grafica-ratios"></canvas>
</div>
<h2>📊 Estadísticas de la página</h2>
<section id="estadisticas" class="galeria cargando"></section>
</main>
</body>
</html>