-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestadisticas.html
145 lines (123 loc) · 5.49 KB
/
estadisticas.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<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">
<title>Amazing Events</title>
<link rel="shortcut icon" href="./assets/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="./style/style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
</head>
<body>
<header>
<div class="nav1">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="#"><img id="logo" src="./assets/logo.png" alt="logo"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-link" href="index.html">Home</a>
<a class="nav-link" href="eventosFuturos.html">Upcoming Events</a>
<a class="nav-link" href="eventosPasados.html">Past Events</a>
<a class="nav-link" href="contacto.html">Contact</a>
<a class="nav-link active" aria-current="page" href="#">Stats</a>
</div>
</div>
</div>
</nav>
</div>
<div id="nav2" class="navsecundario bg-dark text-white py-4">
<a href="./contacto.html"> < </a>
<h1>Stats</h1>
<a href="./index.html"> > </a>
</div>
</header>
<main class="p-2 stats--main">
<table class="bg-white col-11">
<colgroup>
<col span="3" class="table--col">
</colgroup>
<thead>
<tr>
<th colspan="3">Events Statistics</th>
</tr>
</thead>
<tbody id="tabla1">
<tr>
<td class="text-center"><b>Event with the highest percentage of attendance</b></td>
<td class="text-center"><b>Event with the lowest percentage of attendance</b></td>
<td class="text-center"><b>Event with larger capacity</b></td>
</tr>
</tbody>
</table>
<br class="table--br">
<table class = "bg-white col-11">
<colgroup>
<col span="3" class="table--col">
</colgroup>
<thead>
<tr>
<th colspan="3">Upcoming events statistics by category</th>
</tr>
</thead>
<tbody id="tablafuturos">
<tr>
<td colspan="1"><b>Categories</b></td>
<td colspan="1" class="text-center"><b>Revenues Estimated (average)</b></td>
<td colspan="1" class="text-center"><b>Percentage of attendance Estimated (average)</b></td>
</tr>
</tbody>
</table>
<br class="table--br">
<table class = "bg-white col-11 ">
<colgroup>
<col span="3" class="table--col">
</colgroup>
<thead>
<tr>
<th colspan="3">Past events statistics by category</th>
</tr>
</thead>
<tbody id="tablapasados">
<tr>
<td colspan="1"><b>Categories</b></td>
<td colspan="1" class="text-center"><b>Revenues (average)</b></td>
<td colspan="1" class="text-center"><b>Percentage of attendance (average)</b></td>
</tr>
</tbody>
</table>
</main>
<footer class="bg-dark text-white py-4">
<div class="container">
<nav class="row">
<!-- Logo -->
<a href="#" class="col-3 text-reset text-uppercase d-flex align-items-center">
<img src="./assets/logo.png" alt="logo aevents" class="img-logo">
</a>
<!-- menu -->
<ul class="col-4 list-unstyled">
<li class="font-weight-bold text-uppercase">Contact us</li>
<li><a href="mailto:[email protected]" class="text-reset">[email protected]</a></li>
</ul>
<!-- social networks -->
<ul class="col-4 list-unstyled">
<li class="font-weight-bold text-uppercase"></li>
<li class="d-flex justify-content-between">
<a href="#" class="text-reset"><i class="bi bi-facebook"></i></a>
<a href="#" class="text-reset"><i class="bi bi-twitter"></i></a>
<a href="#" class="text-reset"><i class="bi bi-instagram"></i></a>
<a href="#" class="text-reset"><i class="bi bi-reddit"></i></a>
</li>
</ul>
</nav>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<script src="./estadisticas.js"></script>
</body>
</html>