-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstats.html
225 lines (218 loc) · 9.72 KB
/
stats.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
<!DOCTYPE html>
<html lang="en">
<head>
<title>Stats</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Agregamos los estilos de Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css">
<link rel="shortcut icon" href="./assets/img/icon.png" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="estilos.css">
<style>
body::-webkit-scrollbar-horizontal {
display: none;
}
::-webkit-scrollbar {
width: 10px;
background-color: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-track {
background-color: rgba(0, 0, 0, 0.1);
}
body {
overflow-y: scroll;
overflow-x: none;
}
</style>
</head>
<body class="d-flex flex-column min-vh-100">
<nav class="navbar navbar-expand-lg bg-secondary px-3 py-3">
<div class="container">
<a class="navbar-brand" href="#">
<img src="./assets/img/Logo-Amazing-Events.png" alt="" width="260" height="48"
class="d-inline-block align-text-top img-fluid">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-center text-center" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item me-3">
<a class="nav-link btn btn-light" role="button" href="./index.html"
aria-current="page">Home</a>
</li>
<li class="nav-item me-3">
<a class="nav-link btn btn-light" role="button" href="./upcoming.html"
aria-current="page">Upcoming Events</a>
</li>
<li class="nav-item me-3">
<a class="nav-link btn btn-light" role="button" href="./upcoming.html" aria-current="page">Past
Events</a>
</li>
<li class="nav-item me-3">
<a class="nav-link btn btn-light" role="button" href="./contact.html"
aria-current="page">Contact</a>
</li>
<li class="nav-item me-3">
<a class="nav-link btn btn-light" role="button" href="#" aria-current="page">Stats</a>
</li>
</ul>
</div>
</div>
</nav>
<main class="flex-grow-1">
<div id="carouselExampleControls" class="container-fluid carousel slide mt-4 mb-3" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<a href="./stats.html"><img class="d-block w-100"
src="https://via.placeholder.com/1920x100.png?text=Stats" alt="Third slide"></a>
</div>
</div>
<a class="carousel-control-prev btn btn-lg btn-secondary" href="./contact.html" role="button"
data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</a>
<a class="carousel-control-next btn btn-lg btn-secondary" href="./index.html" role="button"
data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</a>
</div>
<div class="d-flex justify-content-center align-items-center h-100">
<div class="p-5 m-5 shadow">
<table class="table table-bordered table-striped table-hover">
<thead class="bg-light">
<tr>
<th colspan="3" class="text-left bg-light">Events Statistics</th>
</tr>
</thead>
<tbody>
<tr>
<td>Events with the Highest percentage of attendance</td>
<td>Events with the Lowest percentage of attendance</td>
<td>Events with the Larger capacity</td>
</tr>
<tr>
<td>Event highest (XX %)</td>
<td>Event lowest (XX %)</td>
<td>Event larger (capacity number)</td>
</tr>
<tr>
<th colspan="3" class="text-left bg-light">Upcoming Events Statistics by Category</th>
</tr>
<tr>
<td>Categories</td>
<td>Revenues</td>
<td>Percentage of attendance</td>
</tr>
<tr>
<td>Category 1</td>
<td>$500</td>
<td>50%</td>
</tr>
<tr>
<td>Category 2</td>
<td>$250</td>
<td>25%</td>
</tr>
<tr>
<td>Category 3</td>
<td>$100</td>
<td>10%</td>
</tr>
<tr>
<td>Category 4</td>
<td>$100</td>
<td>10%</td>
</tr>
<tr>
<td>Category 5</td>
<td>$50</td>
<td>5%</td>
</tr>
<tr>
<td>Category 6</td>
<td>$50</td>
<td>5%</td>
</tr>
<tr>
<th colspan="3" class="text-left bg-light">Past Events Statistics by Category</th>
</tr>
<tr>
<td>Categories</td>
<td>Revenues</td>
<td>Percentage of attendance</td>
</tr>
<tr>
<td>Category 1</td>
<td>$1000</td>
<td>50%</td>
</tr>
<tr>
<td>Category 2</td>
<td>$500</td>
<td>25%</td>
</tr>
<tr>
<td>Category 3</td>
<td>$200</td>
<td>10%</td>
</tr>
<tr>
<td>Category 4</td>
<td>$200</td>
<td>10%</td>
</tr>
<tr>
<td>Category 5</td>
<td>$100</td>
<td>5%</td>
</tr>
<tr>
<td>Category 6</td>
<td>$100</td>
<td>5%</td>
</tr>
<tr>
<td>Category 7</td>
<td>$100</td>
<td>5%</td>
</tr>
</table>
</div>
</div>
</main>
<footer class="footer bg-secondary px-2 mt-0 py-2">
<div class="container justify-content-between">
<div class="row">
<div class="col-sm-5 text-sm-start">
<a href="#"><i style="font-size: 2em;" class="bi-instagram text-white me-3"></i></a>
<a href="#"><i style="font-size: 2em;" class="bi-facebook text-white me-3"></i></a>
<a href="#"><i style="font-size: 2em;" class="bi-whatsapp text-white "></i></a>
</div>
<div class="col-sm-2 text-sm-center"></div>
<div class="col-sm-5 text-sm-end my-auto align-self-center">
<span class="text-white">
<h4>Cohort: FE13-TN</h4>
</span>
</div>
</div>
</div>
</footer>
<script src="./assets/js/main.js"></script>
<script src="./assets/js/stats.js"></script>
<!-- Agregamos los scripts de Bootstrap -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"></script>
</body>
</html>